Skip to content

Commit 4a7c611

Browse files
committed
Fix typo
1 parent 29d0a16 commit 4a7c611

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

plugwise/common.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ def _get_groups(self) -> None:
211211
members = self._collect_members(group)
212212
if group_id not in self._existing_groups and members:
213213
self._new_groups.append(group_id)
214-
elif self.gw_entities[group_id]["name"] == group_name
214+
elif self.gw_entities[group_id]["name"] == group_name:
215215
continue
216216

217217
group_type = group.find("type").text

plugwise/helper.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ def _get_appliances(self) -> bool:
167167

168168
# Collect appliance info, skip orphaned/removed devices
169169
if not (
170-
appl := self._appliance_info_finder(appl, appliance)
170+
(appl := self._appliance_info_finder(appl, appliance))
171171
and appl.entity_id in self._new_appliances
172172
):
173173
self._new_appliances.pop()

0 commit comments

Comments
 (0)