From 6c4fe9fc3bbfd80533c7697855e77502835affdf Mon Sep 17 00:00:00 2001 From: Franck Nijhof Date: Thu, 15 Jun 2023 14:04:38 +0200 Subject: [PATCH] Fix HAVCMode typing in Intellifire (#94633) --- homeassistant/components/intellifire/climate.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/intellifire/climate.py b/homeassistant/components/intellifire/climate.py index 649234d7568..5d305db8feb 100644 --- a/homeassistant/components/intellifire/climate.py +++ b/homeassistant/components/intellifire/climate.py @@ -66,7 +66,7 @@ class IntellifireClimate(IntellifireEntity, ClimateEntity): self.last_temp = coordinator.data.thermostat_setpoint_c @property - def hvac_mode(self) -> str: + def hvac_mode(self) -> HVACMode: """Return current hvac mode.""" if self.coordinator.read_api.data.thermostat_on: return HVACMode.HEAT