Fix logi_circle sensor update method naming (#17909)

Resolves regression in 0.81
This commit is contained in:
Evan Bruhn 2018-10-28 23:46:28 +11:00 committed by Fabian Affolter
parent 0acd4b28f9
commit 6cb735271f
1 changed files with 1 additions and 1 deletions

View File

@ -137,7 +137,7 @@ class LogiSensor(Entity):
"""Return the units of measurement."""
return SENSOR_TYPES.get(self._sensor_type)[1]
async def update(self):
async def async_update(self):
"""Get the latest data and updates the state."""
_LOGGER.debug("Pulling data from %s sensor", self._name)
await self._camera.update()