From 5fc952110e51507a9e4c0385d12570f5bff7088a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andrius=20=C5=A0tikonas?= Date: Sun, 3 Jan 2021 13:39:19 +0000 Subject: [PATCH] Fix incompletely renamed set_frost function. --- neohubapi/neostat.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/neohubapi/neostat.py b/neohubapi/neostat.py index f28eeeb..f7b6712 100644 --- a/neohubapi/neostat.py +++ b/neohubapi/neostat.py @@ -111,7 +111,7 @@ class NeoStat(SimpleNamespace): return result async def set_frost(self, state: bool): - result = await self._hub.frost(state, [self]) + result = await self._hub.set_frost(state, [self]) return result async def set_target_temperature(self, temperature: int):