From 31562e7571fe9d6198ed0285c4f205bd3f4ce134 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kamil=20Bregu=C5=82a?= Date: Tue, 3 Feb 2026 20:16:06 +0100 Subject: [PATCH] Remove duplicated exception handler in overkiz (#162171) Co-authored-by: mik-laj <12058428+mik-laj@users.noreply.github.com> --- homeassistant/components/overkiz/coordinator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/overkiz/coordinator.py b/homeassistant/components/overkiz/coordinator.py index 99f791a748a..17b967fc0b9 100644 --- a/homeassistant/components/overkiz/coordinator.py +++ b/homeassistant/components/overkiz/coordinator.py @@ -92,7 +92,7 @@ class OverkizDataUpdateCoordinator(DataUpdateCoordinator[dict[str, Device]]): except (TimeoutError, ClientConnectorError) as exception: LOGGER.debug("Failed to connect", exc_info=True) raise UpdateFailed("Failed to connect.") from exception - except (ServerDisconnectedError, NotAuthenticatedException): + except ServerDisconnectedError: self.executions = {} # During the relogin, similar exceptions can be thrown.