We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c08f6d commit 6e5010aCopy full SHA for 6e5010a
scraper.py
@@ -361,7 +361,8 @@ def scrape_facilities(self) -> dict:
361
facility["address_str"] = full_address
362
if full_address in self.facilities_data["facilities"].keys(): # type: ignore [attr-defined]
363
self.facilities_data["facilities"][full_address] = self._update_facility( # type: ignore [index]
364
- self.facilities_data["facilities"][full_address], facility # type: ignore [index]
+ self.facilities_data["facilities"][full_address],
365
+ facility, # type: ignore [index]
366
)
367
# update to the frequently nicer address from ice.gov
368
self.facilities_data["facilities"][full_address]["address"] = addr # type: ignore [index]
0 commit comments