Fix hydroquebec (#6574)
This commit is contained in:
parent
5722cf53bf
commit
253dee8e4d
1 changed files with 2 additions and 1 deletions
|
@ -149,7 +149,8 @@ class HydroQuebecSensor(Entity):
|
|||
def update(self):
|
||||
"""Get the latest data from Hydroquebec and update the state."""
|
||||
self.hydroquebec_data.update()
|
||||
self._state = round(self.hydroquebec_data.data[self.type], 2)
|
||||
if self.type in self.hydroquebec_data.data:
|
||||
self._state = round(self.hydroquebec_data.data[self.type], 2)
|
||||
|
||||
|
||||
class HydroquebecData(object):
|
||||
|
|
Loading…
Add table
Reference in a new issue