Skip to content

Commit 517f6d5

Browse files
committed
Fix lowest version
1 parent b4f69c7 commit 517f6d5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plugwise/data.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ def _get_location_data(self, loc_id: str) -> GwEntityData:
166166
if str(ctrl_state) in ("cooling", "heating", "preheating"):
167167
data["control_state"] = str(ctrl_state)
168168
self._count += 1
169-
elif self.smile_version > version.parse("3.6.0"):
169+
elif self.smile_version >= version.parse("3.2.0"):
170170
data["control_state"] = "idle"
171171
self._count += 1
172172

0 commit comments

Comments
 (0)