From cde989cd387f54eae3deb20cc19cdf3396244bbf Mon Sep 17 00:00:00 2001 From: Marc Mueller <30130371+cdce8p@users.noreply.github.com> Date: Wed, 30 Mar 2022 15:49:12 +0200 Subject: [PATCH] Fix zha InovelliCluster base class (#68683) --- .../components/zha/core/channels/manufacturerspecific.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/homeassistant/components/zha/core/channels/manufacturerspecific.py b/homeassistant/components/zha/core/channels/manufacturerspecific.py index a69442ef38c..f31c7f51371 100644 --- a/homeassistant/components/zha/core/channels/manufacturerspecific.py +++ b/homeassistant/components/zha/core/channels/manufacturerspecific.py @@ -12,7 +12,7 @@ from ..const import ( SIGNAL_ATTR_UPDATED, UNKNOWN, ) -from .base import ZigbeeChannel +from .base import ClientChannel, ZigbeeChannel @registries.ZIGBEE_CHANNEL_REGISTRY.register(registries.SMARTTHINGS_HUMIDITY_CLUSTER) @@ -88,7 +88,7 @@ class SmartThingsAcceleration(ZigbeeChannel): @registries.CHANNEL_ONLY_CLUSTERS.register(0xFC31) @registries.CLIENT_CHANNELS_REGISTRY.register(0xFC31) -class InovelliCluster(ZigbeeChannel): +class InovelliCluster(ClientChannel): """Inovelli Button Press Event channel.""" REPORT_CONFIG = []