From 2e5cc5ecf4f2c6656e5ee5e41bccaeb6f569114c Mon Sep 17 00:00:00 2001 From: ribbal Date: Wed, 12 Jan 2022 22:16:08 +0000 Subject: [PATCH] Remove int conversion of preheat_attribute --- neohubapi/neostat.py | 1 - 1 file changed, 1 deletion(-) diff --git a/neohubapi/neostat.py b/neohubapi/neostat.py index 918ca30..e2d7c93 100644 --- a/neohubapi/neostat.py +++ b/neohubapi/neostat.py @@ -82,7 +82,6 @@ class NeoStat(SimpleNamespace): # must be ints self.pin_number = int(self.pin_number) - self.preheat_active = int(self.preheat_active) # HOLD_TIME can be up to 99:99 _hold_time = list(map(int, self.hold_time.split(':')))