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 6e5010a commit 170cf23Copy full SHA for 170cf23
scraper.py
@@ -361,8 +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],
365
- facility, # type: ignore [index]
+ self.facilities_data["facilities"][full_address], # type: ignore [index]
+ facility,
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