From 8491d20a39b2cd629c767528b90fb248435fc052 Mon Sep 17 00:00:00 2001 From: Alin Balutoiu Date: Fri, 8 Mar 2024 09:29:12 +0000 Subject: [PATCH] Fix tado climate service --- homeassistant/components/tado/climate.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/homeassistant/components/tado/climate.py b/homeassistant/components/tado/climate.py index 5d17655c10496..47bd2bc16f3cb 100644 --- a/homeassistant/components/tado/climate.py +++ b/homeassistant/components/tado/climate.py @@ -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."""