fix lint
This commit is contained in:
parent
21feff5fd8
commit
b1736994b7
2 changed files with 4 additions and 3 deletions
|
@ -50,9 +50,10 @@ class IPWebcamBinarySensor(AndroidIPCamEntity, BinarySensorDevice):
|
|||
"""True if the binary sensor is on."""
|
||||
return self._state
|
||||
|
||||
def update(self):
|
||||
@asyncio.coroutine
|
||||
def async_update(self):
|
||||
"""Retrieve latest state."""
|
||||
if self._ipcam.status_data not None:
|
||||
if self._ipcam.status_data is None:
|
||||
return
|
||||
|
||||
container = self._ipcam.sensor_data.get(self._sensor)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue