Fix NMBS IndexError (#89698)
This commit is contained in:
parent
35c02ddc81
commit
cb74b934dc
1 changed files with 5 additions and 1 deletions
|
@ -162,7 +162,11 @@ class NMBSLiveBoard(SensorEntity):
|
||||||
"""Set the state equal to the next departure."""
|
"""Set the state equal to the next departure."""
|
||||||
liveboard = self._api_client.get_liveboard(self._station)
|
liveboard = self._api_client.get_liveboard(self._station)
|
||||||
|
|
||||||
if liveboard is None or not liveboard.get("departures"):
|
if (
|
||||||
|
liveboard is None
|
||||||
|
or not liveboard.get("departures")
|
||||||
|
or liveboard.get("number") == "0"
|
||||||
|
):
|
||||||
return
|
return
|
||||||
|
|
||||||
next_departure = liveboard["departures"]["departure"][0]
|
next_departure = liveboard["departures"]["departure"][0]
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue