From 35ddf1564de37fe4ddea970c4925c49f50d93654 Mon Sep 17 00:00:00 2001 From: gpaesano <97922012+gpaesano@users.noreply.github.com> Date: Sat, 29 Jan 2022 10:33:58 +0100 Subject: [PATCH] Update climate.py There is a typo in target precision which prevents corrct handling of temperature --- custom_components/localtuya/climate.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/custom_components/localtuya/climate.py b/custom_components/localtuya/climate.py index 7b03f31..9d9358f 100644 --- a/custom_components/localtuya/climate.py +++ b/custom_components/localtuya/climate.py @@ -196,7 +196,7 @@ class LocaltuyaClimate(LocalTuyaEntity, ClimateEntity): return self._precision @property - def target_recision(self): + def target_precision(self): """Return the precision of the target.""" return self._target_precision