Skip to content
This repository was archived by the owner on Jan 18, 2023. It is now read-only.

Commit 52bb79a

Browse files
committed
Fix missing valid_fsid for historic
1 parent 755bd31 commit 52bb79a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

firststreet/api/historic.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ def get_events_by_location(self, search_items, location_type, csv=False, output_
8080
api_datas_event = self.call_api(search_item, "historic", "event", None, extra_param=extra_param)
8181

8282
else:
83-
api_datas_event = [{"eventId": None}]
83+
api_datas_event = [{"eventId": None, "valid_id": False}]
8484

8585
event = [HistoricEvent(api_data) for api_data in api_datas_event]
8686

0 commit comments

Comments
 (0)