diff --git a/homeassistant/components/tado/climate.py b/homeassistant/components/tado/climate.py index 5d17655c104..47bd2bc16f3 100644 --- a/homeassistant/components/tado/climate.py +++ b/homeassistant/components/tado/climate.py @@ -401,9 +401,9 @@ class TadoClimate(TadoZoneEntity, ClimateEntity): 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."""