From 4d6e2441dbe5772ba02dbebb85af02e837d71f8a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andrius=20=C5=A0tikonas?= Date: Fri, 7 Jan 2022 23:33:12 +0000 Subject: [PATCH] Fix copy-paste error with floor_limit Closes #10 --- neohubapi/neostat.py | 1 - 1 file changed, 1 deletion(-) diff --git a/neohubapi/neostat.py b/neohubapi/neostat.py index e4f16a0..918ca30 100644 --- a/neohubapi/neostat.py +++ b/neohubapi/neostat.py @@ -77,7 +77,6 @@ class NeoStat(SimpleNamespace): # Renamed attrs self.name = getattr(self._data_, 'ZONE_NAME', getattr(self._data_, 'device', None)) - self.floor_limit = getattr(self._data_, 'ZONE_NAME', None) self.target_temperature = getattr(self._data_, 'SET_TEMP', None) self.temperature = getattr(self._data_, 'ACTUAL_TEMP', None)