mirror of
https://github.com/home-assistant/core.git
synced 2025-07-17 02:07:09 +00:00
Fix logi_circle sensor update method naming (#17909)
Resolves regression in 0.81
This commit is contained in:
parent
0acd4b28f9
commit
6cb735271f
@ -137,7 +137,7 @@ class LogiSensor(Entity):
|
|||||||
"""Return the units of measurement."""
|
"""Return the units of measurement."""
|
||||||
return SENSOR_TYPES.get(self._sensor_type)[1]
|
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."""
|
"""Get the latest data and updates the state."""
|
||||||
_LOGGER.debug("Pulling data from %s sensor", self._name)
|
_LOGGER.debug("Pulling data from %s sensor", self._name)
|
||||||
await self._camera.update()
|
await self._camera.update()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user