From 6cb735271fec26cee606dc09fbb73ef740ddfdb4 Mon Sep 17 00:00:00 2001 From: Evan Bruhn Date: Sun, 28 Oct 2018 23:46:28 +1100 Subject: [PATCH] Fix logi_circle sensor update method naming (#17909) Resolves regression in 0.81 --- homeassistant/components/sensor/logi_circle.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/sensor/logi_circle.py b/homeassistant/components/sensor/logi_circle.py index a0a2ca96444..104de68ce03 100644 --- a/homeassistant/components/sensor/logi_circle.py +++ b/homeassistant/components/sensor/logi_circle.py @@ -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()