From 204833b745c0ef99945bce93b0980c861f5bdeb1 Mon Sep 17 00:00:00 2001 From: Franck Nijhof Date: Thu, 15 Jun 2023 14:13:59 +0200 Subject: [PATCH] Fix HAVCMode typing in Rheem EcoNet (#94637) --- homeassistant/components/econet/climate.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/econet/climate.py b/homeassistant/components/econet/climate.py index cf950a3c38c..7233d135f2e 100644 --- a/homeassistant/components/econet/climate.py +++ b/homeassistant/components/econet/climate.py @@ -151,7 +151,7 @@ class EcoNetThermostat(EcoNetEntity, ClimateEntity): return self.op_list @property - def hvac_mode(self) -> str: + def hvac_mode(self) -> HVACMode: """Return hvac operation ie. heat, cool, mode. Needs to be one of HVAC_MODE_*.