From 60c1a8d56f7dfff72161ec79c8d60df497b86158 Mon Sep 17 00:00:00 2001 From: TheJulianJES Date: Tue, 17 Oct 2023 22:23:11 +0200 Subject: [PATCH] Remove invalid attribute reporting for `enhanced_current_hue` in ZHA (#102137) --- homeassistant/components/zha/core/cluster_handlers/lighting.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/zha/core/cluster_handlers/lighting.py b/homeassistant/components/zha/core/cluster_handlers/lighting.py index 830edfcf1c9..5f1e52fa241 100644 --- a/homeassistant/components/zha/core/cluster_handlers/lighting.py +++ b/homeassistant/components/zha/core/cluster_handlers/lighting.py @@ -29,7 +29,6 @@ class ColorClusterHandler(ClusterHandler): AttrReportConfig(attr="current_x", config=REPORT_CONFIG_DEFAULT), AttrReportConfig(attr="current_y", config=REPORT_CONFIG_DEFAULT), AttrReportConfig(attr="current_hue", config=REPORT_CONFIG_DEFAULT), - AttrReportConfig(attr="enhanced_current_hue", config=REPORT_CONFIG_DEFAULT), AttrReportConfig(attr="current_saturation", config=REPORT_CONFIG_DEFAULT), AttrReportConfig(attr="color_temperature", config=REPORT_CONFIG_DEFAULT), ) @@ -41,6 +40,7 @@ class ColorClusterHandler(ClusterHandler): "color_temp_physical_max": True, "color_capabilities": True, "color_loop_active": False, + "enhanced_current_hue": False, "start_up_color_temperature": True, "options": True, }