Skip to content
Snippets Groups Projects
Unverified Commit 8dd3d6f9 authored by Joost Lekkerkerker's avatar Joost Lekkerkerker Committed by GitHub
Browse files

Call async added to hass super in Livisi (#100446)

parent 2ad0fd1c
No related branches found
No related tags found
No related merge requests found
...@@ -67,6 +67,7 @@ class LivisiEntity(CoordinatorEntity[LivisiDataUpdateCoordinator]): ...@@ -67,6 +67,7 @@ class LivisiEntity(CoordinatorEntity[LivisiDataUpdateCoordinator]):
# pylint: disable-next=hass-missing-super-call # pylint: disable-next=hass-missing-super-call
async def async_added_to_hass(self) -> None: async def async_added_to_hass(self) -> None:
"""Register callback for reachability.""" """Register callback for reachability."""
await super().async_added_to_hass()
self.async_on_remove( self.async_on_remove(
async_dispatcher_connect( async_dispatcher_connect(
self.hass, self.hass,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment