Remove redundant `async_update` for OpenUV entities (#80735)
parent
91c5aac8ba
commit
e40db797c5
|
@ -310,10 +310,3 @@ class OpenUvEntity(CoordinatorEntity):
|
||||||
"""Handle entity which will be added."""
|
"""Handle entity which will be added."""
|
||||||
await super().async_added_to_hass()
|
await super().async_added_to_hass()
|
||||||
self._update_from_latest_data()
|
self._update_from_latest_data()
|
||||||
|
|
||||||
async def async_update(self) -> None:
|
|
||||||
"""Update the entity.
|
|
||||||
|
|
||||||
Only used by the generic entity update service.
|
|
||||||
"""
|
|
||||||
await self.coordinator.async_request_refresh()
|
|
||||||
|
|
Loading…
Reference in New Issue