@@ -27,7 +27,7 @@ class LocationDetailProperty(LocationDetail):
2727
2828 def __init__ (self , response ):
2929 super ().__init__ (response )
30- self .fsid = response .get ('fsid' )
30+ self .fsid = str ( response .get ('fsid' ) )
3131 self .streetNumber = response .get ('streetNumber' )
3232 self .route = response .get ('route' )
3333 self .city = response .get ('city' )
@@ -56,7 +56,7 @@ class LocationDetailNeighborhood(LocationDetail):
5656
5757 def __init__ (self , response ):
5858 super ().__init__ (response )
59- self .fsid = response .get ('fsid' )
59+ self .fsid = str ( response .get ('fsid' ) )
6060 self .city = response .get ('city' )
6161 self .subtype = response .get ('subtype' )
6262 self .county = response .get ('county' )
@@ -77,7 +77,7 @@ class LocationDetailCity(LocationDetail):
7777
7878 def __init__ (self , response ):
7979 super ().__init__ (response )
80- self .fsid = response .get ('fsid' )
80+ self .fsid = str ( response .get ('fsid' ) )
8181 self .lsad = response .get ('lsad' )
8282 self .zcta = response .get ('zcta' )
8383 self .neighborhood = response .get ('neighborhood' )
@@ -96,7 +96,7 @@ class LocationDetailZcta(LocationDetail):
9696
9797 def __init__ (self , response ):
9898 super ().__init__ (response )
99- self .fsid = response .get ('fsid' )
99+ self .fsid = str ( response .get ('fsid' ) )
100100 self .city = response .get ('city' )
101101 self .county = response .get ('county' )
102102 self .state = response .get ('state' )
@@ -113,7 +113,7 @@ class LocationDetailTract(LocationDetail):
113113
114114 def __init__ (self , response ):
115115 super ().__init__ (response )
116- self .fsid = response .get ('fsid' )
116+ self .fsid = str ( response .get ('fsid' ) )
117117 self .fips = response .get ('fips' )
118118 self .county = response .get ('county' )
119119 self .state = response .get ('state' )
@@ -129,7 +129,7 @@ class LocationDetailCounty(LocationDetail):
129129
130130 def __init__ (self , response ):
131131 super ().__init__ (response )
132- self .fsid = response .get ('fsid' )
132+ self .fsid = str ( response .get ('fsid' ) )
133133 self .name = response .get ('name' )
134134 self .city = response .get ('city' )
135135 self .zcta = response .get ('zcta' )
@@ -153,7 +153,7 @@ class LocationDetailCd(LocationDetail):
153153
154154 def __init__ (self , response ):
155155 super ().__init__ (response )
156- self .fsid = response .get ('fsid' )
156+ self .fsid = str ( response .get ('fsid' ) )
157157 self .county = response .get ('county' )
158158 self .congress = response .get ('congress' )
159159 self .state = response .get ('state' )
@@ -170,7 +170,7 @@ class LocationDetailState(LocationDetail):
170170
171171 def __init__ (self , response ):
172172 super ().__init__ (response )
173- self .fsid = response .get ('fsid' )
173+ self .fsid = str ( response .get ('fsid' ) )
174174 self .fips = response .get ('fips' )
175175 self .geometry = Geometry (response .get ('geometry' ))
176176 self .name = response .get ('name' )
@@ -185,7 +185,7 @@ class LocationSummary(Api):
185185
186186 def __init__ (self , response ):
187187 super ().__init__ (response )
188- self .fsid = response .get ('fsid' )
188+ self .fsid = str ( response .get ('fsid' ) )
189189 self .riskDirection = response .get ('riskDirection' )
190190 self .environmentalRisk = response .get ('environmentalRisk' )
191191 self .historic = response .get ('historic' )
0 commit comments