From d1d325563392a863219fd97d64cf95b4ea1bf9bf Mon Sep 17 00:00:00 2001 From: Franck Nijhof Date: Thu, 15 Jun 2023 11:57:41 +0200 Subject: [PATCH] Fix HAVCMode typing in Intellifire --- 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 649234d7568455..5d305db8febcfd 100644 --- a/homeassistant/components/intellifire/climate.py +++ b/homeassistant/components/intellifire/climate.py @@ -66,7 +66,7 @@ def __init__( 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