mirror of
https://github.com/basnijholt/adaptive-lighting.git
synced 2026-09-11 22:34:04 +02:00
Treat Hue groups as individual lights (#1037)
This commit is contained in:
parent
8e8c520dad
commit
d3b2d00bf1
1 changed files with 3 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue