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")