From 3ac7c286eb12ffd8b8f0bea5b1a479e0851a7c7e Mon Sep 17 00:00:00 2001 From: IceBotYT <34712694+IceBotYT@users.noreply.github.com> Date: Wed, 26 Aug 2026 16:30:55 -0400 Subject: [PATCH] Add `PARALLEL_UPDATES` constants to Nice G.O. (#180342) --- homeassistant/components/nice_go/cover.py | 2 +- homeassistant/components/nice_go/event.py | 1 + homeassistant/components/nice_go/light.py | 1 + homeassistant/components/nice_go/switch.py | 1 + 4 files changed, 4 insertions(+), 1 deletion(-) diff --git a/homeassistant/components/nice_go/cover.py b/homeassistant/components/nice_go/cover.py index 71bf7b4f16fb..9c466339d750 100644 --- a/homeassistant/components/nice_go/cover.py +++ b/homeassistant/components/nice_go/cover.py @@ -19,7 +19,7 @@ DEVICE_CLASSES = { "Mms100": CoverDeviceClass.GATE, "WallStation_ESP32": CoverDeviceClass.GARAGE, } -PARALLEL_UPDATES = 1 +PARALLEL_UPDATES = 0 async def async_setup_entry( diff --git a/homeassistant/components/nice_go/event.py b/homeassistant/components/nice_go/event.py index d1eabe79b0cc..ef472eb31dab 100644 --- a/homeassistant/components/nice_go/event.py +++ b/homeassistant/components/nice_go/event.py @@ -11,6 +11,7 @@ from .coordinator import NiceGOConfigEntry from .entity import NiceGOEntity _LOGGER = logging.getLogger(__name__) +PARALLEL_UPDATES = 0 async def async_setup_entry( diff --git a/homeassistant/components/nice_go/light.py b/homeassistant/components/nice_go/light.py index 3914c44b1bc0..d418b785741f 100644 --- a/homeassistant/components/nice_go/light.py +++ b/homeassistant/components/nice_go/light.py @@ -18,6 +18,7 @@ from .entity import NiceGOEntity from .util import retry _LOGGER = logging.getLogger(__name__) +PARALLEL_UPDATES = 0 async def async_setup_entry( diff --git a/homeassistant/components/nice_go/switch.py b/homeassistant/components/nice_go/switch.py index 384543ad3bcf..4e36e9a95628 100644 --- a/homeassistant/components/nice_go/switch.py +++ b/homeassistant/components/nice_go/switch.py @@ -18,6 +18,7 @@ from .entity import NiceGOEntity from .util import retry _LOGGER = logging.getLogger(__name__) +PARALLEL_UPDATES = 0 async def async_setup_entry(