From c394a7c0f91c1eb47c20ac1293d3ee0666d2c8da Mon Sep 17 00:00:00 2001 From: TheJulianJES Date: Tue, 24 Sep 2024 23:52:41 +0200 Subject: [PATCH] Fix light groups missing `effect_list` state (#209) --- zha/application/platforms/light/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/zha/application/platforms/light/__init__.py b/zha/application/platforms/light/__init__.py index 5b7f7495..492a9543 100644 --- a/zha/application/platforms/light/__init__.py +++ b/zha/application/platforms/light/__init__.py @@ -145,6 +145,7 @@ def state(self) -> dict[str, Any]: response["brightness"] = self.brightness response["xy_color"] = self.xy_color response["color_temp"] = self.color_temp + response["effect_list"] = self.effect_list response["effect"] = self.effect response["supported_features"] = self.supported_features response["color_mode"] = self.color_mode