Set PARALLEL_UPDATES to 0 for the Airly sensor platform (#181288)

This commit is contained in:
Maciej Bieniek
2026-09-05 20:46:41 +02:00
committed by GitHub
parent 9b312180c6
commit 2a1c7d1a86
2 changed files with 2 additions and 4 deletions
@@ -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
+1 -1
View File
@@ -51,7 +51,7 @@ from .const import (
)
from .coordinator import AirlyConfigEntry, AirlyDataUpdateCoordinator
PARALLEL_UPDATES = 1
PARALLEL_UPDATES = 0
@dataclass(frozen=True)