Skip to content

Commit 170cf23

Browse files
committed
actually fix linting and typing
Signed-off-by: John Seekins <[email protected]>
1 parent 6e5010a commit 170cf23

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scraper.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -361,8 +361,8 @@ def scrape_facilities(self) -> dict:
361361
facility["address_str"] = full_address
362362
if full_address in self.facilities_data["facilities"].keys(): # type: ignore [attr-defined]
363363
self.facilities_data["facilities"][full_address] = self._update_facility( # type: ignore [index]
364-
self.facilities_data["facilities"][full_address],
365-
facility, # type: ignore [index]
364+
self.facilities_data["facilities"][full_address], # type: ignore [index]
365+
facility,
366366
)
367367
# update to the frequently nicer address from ice.gov
368368
self.facilities_data["facilities"][full_address]["address"] = addr # type: ignore [index]

0 commit comments

Comments
 (0)