From 8dd3d6f989bf5c7604337376bf45bf7546aa6a11 Mon Sep 17 00:00:00 2001 From: Joost Lekkerkerker <joostlek@outlook.com> Date: Tue, 19 Sep 2023 17:40:55 +0200 Subject: [PATCH] Call async added to hass super in Livisi (#100446) --- homeassistant/components/livisi/entity.py | 1 + 1 file changed, 1 insertion(+) diff --git a/homeassistant/components/livisi/entity.py b/homeassistant/components/livisi/entity.py index 388788d3dea..b7b9bdc8521 100644 --- a/homeassistant/components/livisi/entity.py +++ b/homeassistant/components/livisi/entity.py @@ -67,6 +67,7 @@ class LivisiEntity(CoordinatorEntity[LivisiDataUpdateCoordinator]): # pylint: disable-next=hass-missing-super-call async def async_added_to_hass(self) -> None: """Register callback for reachability.""" + await super().async_added_to_hass() self.async_on_remove( async_dispatcher_connect( self.hass, -- GitLab