From 93382be66bd0f2c2d1310cc4743d312471754d6b Mon Sep 17 00:00:00 2001 From: Patrick Pichon Date: Wed, 18 Oct 2023 15:47:32 +0200 Subject: [PATCH] do not overwrite the Attribute when calling is_cluster_specific_config --- Modules/readZclClusters.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/readZclClusters.py b/Modules/readZclClusters.py index b8d5b28e4..b77b01ef0 100644 --- a/Modules/readZclClusters.py +++ b/Modules/readZclClusters.py @@ -311,7 +311,7 @@ def is_cluster_zcl_config_available( self, nwkid, ep, cluster, attribute=None): if is_manufacturer_specific_cluster( self, cluster): return True - if is_cluster_specific_config(self, _get_model_name( self, nwkid), ep, cluster, attribute=None): + if is_cluster_specific_config(self, _get_model_name( self, nwkid), ep, cluster, attribute): return True return is_generic_zcl_cluster( self, cluster, attribute)