Fix inheritance order for KNX notify (#116600)

This commit is contained in:
Matthias Alphart
2024-05-02 11:44:32 +02:00
committed by GitHub
parent 10bc66ac77
commit 8eb1970721

View File

@@ -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