Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mxr committed Dec 13, 2024
1 parent 7b11e9a commit 0a4f2e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion custom_components/kumo/climate.py
Original file line number Diff line number Diff line change
Expand Up @@ -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")

0 comments on commit 0a4f2e9

Please sign in to comment.