Fix inheritance order for KNX notify (#116600)

This commit is contained in:
Matthias Alphart 2024-05-02 11:44:32 +02:00 committed by Franck Nijhof
parent 0e488ef505
commit 575a3da772
No known key found for this signature in database
GPG Key ID: D62583BA8AB11CA3

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