Skip to content

Commit

Permalink
Fix tado climate service (home-assistant#112686)
Browse files Browse the repository at this point in the history
  • Loading branch information
alinbalutoiu authored and frenck committed Mar 13, 2024
1 parent e95ce2d commit 9e977f2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions homeassistant/components/tado/climate.py
Original file line number Diff line number Diff line change
Expand Up @@ -401,9 +401,9 @@ def target_temperature(self) -> float | None:

def set_timer(
self,
temperature: float,
time_period: int,
requested_overlay: str,
temperature: float | None = None,
time_period: int | None = None,
requested_overlay: str | None = None,
):
"""Set the timer on the entity, and temperature if supported."""

Expand Down

0 comments on commit 9e977f2

Please sign in to comment.