From 2a1c7d1a864ed7cf9f6fb16c8a0ece7d01e16d48 Mon Sep 17 00:00:00 2001 From: Maciej Bieniek Date: Sat, 5 Sep 2026 20:46:41 +0200 Subject: [PATCH] Set `PARALLEL_UPDATES` to `0` for the Airly sensor platform (#181288) --- homeassistant/components/airly/quality_scale.yaml | 4 +--- homeassistant/components/airly/sensor.py | 2 +- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/homeassistant/components/airly/quality_scale.yaml b/homeassistant/components/airly/quality_scale.yaml index d63e6312017b..ded997569302 100644 --- a/homeassistant/components/airly/quality_scale.yaml +++ b/homeassistant/components/airly/quality_scale.yaml @@ -43,9 +43,7 @@ rules: entity-unavailable: done integration-owner: done log-when-unavailable: done - parallel-updates: - status: todo - comment: PARALLEL_UPDATES should be changed to 0 as documentation suggests. + parallel-updates: done reauthentication-flow: todo test-coverage: done diff --git a/homeassistant/components/airly/sensor.py b/homeassistant/components/airly/sensor.py index 6a983aabe722..59da86bf6967 100644 --- a/homeassistant/components/airly/sensor.py +++ b/homeassistant/components/airly/sensor.py @@ -51,7 +51,7 @@ from .const import ( ) from .coordinator import AirlyConfigEntry, AirlyDataUpdateCoordinator -PARALLEL_UPDATES = 1 +PARALLEL_UPDATES = 0 @dataclass(frozen=True)