From 83f0f8925224aa984c870f87174864dd75d071fe Mon Sep 17 00:00:00 2001 From: Christopher Fenner Date: Thu, 12 Oct 2023 13:18:59 +0200 Subject: [PATCH] fix type issue --- homeassistant/components/vicare/climate.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/vicare/climate.py b/homeassistant/components/vicare/climate.py index a9188adc964..550fc6373b8 100644 --- a/homeassistant/components/vicare/climate.py +++ b/homeassistant/components/vicare/climate.py @@ -152,7 +152,7 @@ class ViCareClimate(ClimateEntity): self._attr_name = name self._api = api self._circuit = circuit - self._attributes = {} + self._attributes: dict[str, Any] = {} self._current_mode = None self._current_program = None self._current_action = None