this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

revert: get_group() returns dict, not list

zzstoatzz dd0ae2b7 077a04d9

+3 -3
+3 -3
src/solux/controller.py
··· 171 171 if groups is None: 172 172 all_groups = bridge.get_group() 173 173 groups = [ 174 - g["name"] 175 - for g in all_groups 176 - if g["name"] not in ("all", "Custom group for $lights") 174 + info["name"] 175 + for gid, info in all_groups.items() 176 + if info["name"] not in ("all", "Custom group for $lights") 177 177 ] 178 178 179 179 for group_name in groups: