Skip to content

Commit 2a5cf83

Browse files
authored
Disable parallel updates for Nintendo Parental Controls (home-assistant#154866)
1 parent 5dcb68c commit 2a5cf83

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

homeassistant/components/nintendo_parental_controls/number.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
from .coordinator import NintendoParentalControlsConfigEntry, NintendoUpdateCoordinator
2020
from .entity import Device, NintendoDevice
2121

22-
PARALLEL_UPDATES = 0
22+
PARALLEL_UPDATES = 1
2323

2424

2525
class NintendoParentalNumber(StrEnum):

homeassistant/components/nintendo_parental_controls/switch.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
from .coordinator import NintendoParentalControlsConfigEntry, NintendoUpdateCoordinator
2121
from .entity import Device, NintendoDevice
2222

23-
PARALLEL_UPDATES = 0
23+
PARALLEL_UPDATES = 1
2424

2525

2626
class NintendoParentalSwitch(StrEnum):

homeassistant/components/nintendo_parental_controls/time.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
_LOGGER = logging.getLogger(__name__)
2424

2525
# Coordinator is used to centralize the data updates
26-
PARALLEL_UPDATES = 0
26+
PARALLEL_UPDATES = 1
2727

2828

2929
class NintendoParentalControlsTime(StrEnum):

0 commit comments

Comments
 (0)