Skip to content
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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,
Comment thread
MartinHjelmare marked this conversation as resolved.
time_period: int | None = None,
requested_overlay: str | None = None,
):
"""Set the timer on the entity, and temperature if supported."""

Expand Down