Skip to content

Commit 15eb735

Browse files
committed
Fix
1 parent 75fedfc commit 15eb735

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/pymelcloud/ata_device.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ def has_outdoor_temperature(self) -> bool:
212212
"""Return True if the device has an outdoor temperature sensor."""
213213
if self._device_conf.get("HideOutdoorTemperature", False):
214214
return False
215-
return self._device_conf.get("Device", {}).get("HasOutdoorTemperature", False):
215+
return self._device_conf.get("Device", {}).get("HasOutdoorTemperature", False)
216216

217217
@property
218218
def outdoor_temperature(self) -> Optional[float]:

0 commit comments

Comments
 (0)