Skip to content

Commit aee27d7

Browse files
authored
Merge pull request #69 from drsgoodall/master
Support heating groups
2 parents 269a84b + b199a1f commit aee27d7

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

pyhiveapi/apyhiveapi/session.py

+5-1
Original file line numberDiff line numberDiff line change
@@ -528,7 +528,11 @@ async def createDevices(self):
528528
p = self.data.products[aProduct]
529529
if "error" in p:
530530
continue
531-
if p.get("isGroup", False):
531+
# Only consider single items or heating groups
532+
if (
533+
p.get("isGroup", False)
534+
and self.data.products[aProduct]["type"] not in HIVE_TYPES["Heating"]
535+
):
532536
continue
533537
product_list = PRODUCTS.get(self.data.products[aProduct]["type"], [])
534538
for code in product_list:

0 commit comments

Comments
 (0)