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 fbddf0a commit 3fa8857Copy full SHA for 3fa8857
examples/stop_ids_for_agency.py
@@ -5,7 +5,7 @@ def main_sync() -> None:
5
client = onebusaway.OnebusawaySDK(api_key="TEST")
6
agency_id = "40"
7
stop_ids = client.stop_ids_for_agency.list(agency_id)
8
- if stop_ids.data and stop_ids.data.list is not None:
+ if stop_ids.data:
9
for stop_id in stop_ids.data.list:
10
print(stop_id)
11
0 commit comments