From 0a4f2e935916d480c6a02ff975a25c541a346556 Mon Sep 17 00:00:00 2001 From: Max R Date: Fri, 13 Dec 2024 10:30:39 -0500 Subject: [PATCH] fix --- custom_components/kumo/climate.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/custom_components/kumo/climate.py b/custom_components/kumo/climate.py index c73d848..9864441 100644 --- a/custom_components/kumo/climate.py +++ b/custom_components/kumo/climate.py @@ -537,6 +537,6 @@ def turn_on(self) -> None: In the future, make the default "on" mode configurable.""" self.set_hvac_mode(HVACMode.COOL, caller="turn_on") - def turn_off(self, hvac_mode): + def turn_off(self): """Turn the climate off. This implements https://www.home-assistant.io/integrations/climate/#action-climateturn_off.""" self.set_hvac_mode(HVACMode.OFF, caller="turn_off")