From 68f87fe42acdc49a499b7591a9a0dc595041b0d8 Mon Sep 17 00:00:00 2001 From: Franck Nijhof Date: Thu, 15 Jun 2023 18:43:11 +0200 Subject: [PATCH] Fix HAVCAction typing in Genius Hub (#94659) --- homeassistant/components/geniushub/climate.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/geniushub/climate.py b/homeassistant/components/geniushub/climate.py index 87c8b851ea9..bafda44501b 100644 --- a/homeassistant/components/geniushub/climate.py +++ b/homeassistant/components/geniushub/climate.py @@ -76,7 +76,7 @@ class GeniusClimateZone(GeniusHeatingZone, ClimateEntity): return list(HA_HVAC_TO_GH) @property - def hvac_action(self) -> str | None: + def hvac_action(self) -> HVACAction | None: """Return the current running hvac operation if supported.""" if "_state" in self._zone.data: # only for v3 API if self._zone.data["output"] == 1: