From 385e6f58a8100041e22e4abf00f0ef7e362dee4e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kamil=20Bregu=C5=82a?= Date: Sat, 1 Nov 2025 16:25:59 +0100 Subject: [PATCH] Set PARALLEL_UPDATES in GIOS (#155604) Co-authored-by: mik-laj <12058428+mik-laj@users.noreply.github.com> --- homeassistant/components/gios/sensor.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/homeassistant/components/gios/sensor.py b/homeassistant/components/gios/sensor.py index b8583adfcf11..a0511e84536d 100644 --- a/homeassistant/components/gios/sensor.py +++ b/homeassistant/components/gios/sensor.py @@ -43,6 +43,9 @@ from .coordinator import GiosConfigEntry, GiosDataUpdateCoordinator _LOGGER = logging.getLogger(__name__) +# Coordinator is used to centralize the data updates +PARALLEL_UPDATES = 0 + @dataclass(frozen=True, kw_only=True) class GiosSensorEntityDescription(SensorEntityDescription):