From 81d46fe2b2b978f8fcd82ff53f7bde719be6e3ee Mon Sep 17 00:00:00 2001 From: Franck Nijhof Date: Thu, 15 Jun 2023 18:43:32 +0200 Subject: [PATCH] Fix HAVCAction typing in Balboa Spa Client (#94658) --- homeassistant/components/balboa/climate.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/balboa/climate.py b/homeassistant/components/balboa/climate.py index 06e8d265502..0d0fa9bd179 100644 --- a/homeassistant/components/balboa/climate.py +++ b/homeassistant/components/balboa/climate.py @@ -78,7 +78,7 @@ class BalboaClimateEntity(BalboaEntity, ClimateEntity): return HEAT_HVAC_MODE_MAP.get(self._client.heat_mode.state) @property - def hvac_action(self) -> str: + def hvac_action(self) -> HVACAction: """Return the current operation mode.""" return HEAT_STATE_HVAC_ACTION_MAP[self._client.heat_state]