Remove redundant async_update for OpenUV entities (#80735)

This commit is contained in:
Aaron Bach 2022-10-21 14:08:37 -06:00 committed by GitHub
parent 91c5aac8ba
commit e40db797c5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -310,10 +310,3 @@ class OpenUvEntity(CoordinatorEntity):
"""Handle entity which will be added."""
await super().async_added_to_hass()
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()