We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e89b103 commit 4f88ff6Copy full SHA for 4f88ff6
plugwise/smile.py
@@ -138,7 +138,10 @@ def get_all_devices(self) -> None:
138
search = self._domain_objects
139
self._anna_cooling_present = adam_cooling_present = False
140
if search.find(locator_1) is not None:
141
- self._anna_cooling_present = adam_cooling_present = True
+ if self.smile_name == "Anna":
142
+ self._anna_cooling_present = True
143
+ else:
144
+ adam_cooling_present = True
145
# Alternative method for the Anna with Elga
146
elif search.find(locator_2) is not None:
147
self._anna_cooling_present = True
0 commit comments