From 8eb197072151fe7e65d7c8d3c31209b7022c7b7c Mon Sep 17 00:00:00 2001 From: Matthias Alphart Date: Thu, 2 May 2024 11:44:32 +0200 Subject: [PATCH] Fix inheritance order for KNX notify (#116600) --- homeassistant/components/knx/notify.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/knx/notify.py b/homeassistant/components/knx/notify.py index e208e4fd646..f206ee62ece 100644 --- a/homeassistant/components/knx/notify.py +++ b/homeassistant/components/knx/notify.py @@ -97,7 +97,7 @@ def _create_notification_instance(xknx: XKNX, config: ConfigType) -> XknxNotific ) -class KNXNotify(NotifyEntity, KnxEntity): +class KNXNotify(KnxEntity, NotifyEntity): """Representation of a KNX notification entity.""" _device: XknxNotification