Treat Hue groups as individual lights (#1037)

This commit is contained in:
MizterB 2024-08-25 12:00:14 -04:00 committed by GitHub
commit d3b2d00bf1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -638,7 +638,9 @@ def _expand_light_groups(
def _is_light_group(state: State) -> bool:
return "entity_id" in state.attributes
return "entity_id" in state.attributes and not state.attributes.get(
"is_hue_group", False
)
@bind_hass