From f8de214560fcb4778984933c8f756606c94f38f4 Mon Sep 17 00:00:00 2001 From: Alin Balutoiu Date: Wed, 20 Mar 2024 10:59:13 +0000 Subject: [PATCH] Make temperature a required parameter for tado climate service (#113872) Make temperature a required parameter --- homeassistant/components/tado/climate.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/tado/climate.py b/homeassistant/components/tado/climate.py index 47bd2bc16f3..3261b6e212d 100644 --- a/homeassistant/components/tado/climate.py +++ b/homeassistant/components/tado/climate.py @@ -401,7 +401,7 @@ class TadoClimate(TadoZoneEntity, ClimateEntity): def set_timer( self, - temperature: float | None = None, + temperature: float, time_period: int | None = None, requested_overlay: str | None = None, ):