1
0
mirror of https://github.com/home-assistant/core.git synced 2026-07-16 02:53:27 +01:00

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
@@ -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()