Fix the return types of __poll_gtfsr_deltas when API calls fail
This commit is contained in:
parent
864bf52d64
commit
b8ad5b76de
|
|
@ -233,7 +233,7 @@ class GTFSClient():
|
||||||
response = requests.get(url = self.gtfs_r_url, headers = headers)
|
response = requests.get(url = self.gtfs_r_url, headers = headers)
|
||||||
if response.status_code != 200:
|
if response.status_code != 200:
|
||||||
print("GTFS-R sent non-OK response: {}\n{}".format(response.status_code, response.text))
|
print("GTFS-R sent non-OK response: {}\n{}".format(response.status_code, response.text))
|
||||||
return (None, None)
|
return ({}, [], [])
|
||||||
|
|
||||||
deltas_json = json.loads(response.text)
|
deltas_json = json.loads(response.text)
|
||||||
else:
|
else:
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue