diff --git a/homeassistant/components/switchbot/binary_sensor.py b/homeassistant/components/switchbot/binary_sensor.py index bf071d64a2d..a5378028264 100644 --- a/homeassistant/components/switchbot/binary_sensor.py +++ b/homeassistant/components/switchbot/binary_sensor.py @@ -15,7 +15,7 @@ from .const import DOMAIN from .coordinator import SwitchbotDataUpdateCoordinator from .entity import SwitchbotEntity -PARALLEL_UPDATES = 1 +PARALLEL_UPDATES = 0 BINARY_SENSOR_TYPES: dict[str, BinarySensorEntityDescription] = { "calibration": BinarySensorEntityDescription( diff --git a/homeassistant/components/switchbot/cover.py b/homeassistant/components/switchbot/cover.py index df716be6ff3..696c9455f28 100644 --- a/homeassistant/components/switchbot/cover.py +++ b/homeassistant/components/switchbot/cover.py @@ -24,7 +24,7 @@ from .entity import SwitchbotEntity # Initialize the logger _LOGGER = logging.getLogger(__name__) -PARALLEL_UPDATES = 1 +PARALLEL_UPDATES = 0 async def async_setup_entry( diff --git a/homeassistant/components/switchbot/light.py b/homeassistant/components/switchbot/light.py index e55f5fff9b1..0b4f748f1b2 100644 --- a/homeassistant/components/switchbot/light.py +++ b/homeassistant/components/switchbot/light.py @@ -29,7 +29,7 @@ SWITCHBOT_COLOR_MODE_TO_HASS = { SwitchBotColorMode.COLOR_TEMP: ColorMode.COLOR_TEMP, } -PARALLEL_UPDATES = 1 +PARALLEL_UPDATES = 0 async def async_setup_entry( diff --git a/homeassistant/components/switchbot/manifest.json b/homeassistant/components/switchbot/manifest.json index a321c964edc..bb670cc72d3 100644 --- a/homeassistant/components/switchbot/manifest.json +++ b/homeassistant/components/switchbot/manifest.json @@ -2,7 +2,7 @@ "domain": "switchbot", "name": "SwitchBot", "documentation": "https://www.home-assistant.io/integrations/switchbot", - "requirements": ["PySwitchbot==0.19.9"], + "requirements": ["PySwitchbot==0.19.10"], "config_flow": true, "dependencies": ["bluetooth"], "codeowners": [ diff --git a/homeassistant/components/switchbot/sensor.py b/homeassistant/components/switchbot/sensor.py index 9658c1ed9c8..e435e71efbd 100644 --- a/homeassistant/components/switchbot/sensor.py +++ b/homeassistant/components/switchbot/sensor.py @@ -21,7 +21,7 @@ from .const import DOMAIN from .coordinator import SwitchbotDataUpdateCoordinator from .entity import SwitchbotEntity -PARALLEL_UPDATES = 1 +PARALLEL_UPDATES = 0 SENSOR_TYPES: dict[str, SensorEntityDescription] = { "rssi": SensorEntityDescription( diff --git a/homeassistant/components/switchbot/switch.py b/homeassistant/components/switchbot/switch.py index d524a7100f0..c4bbc2af1e0 100644 --- a/homeassistant/components/switchbot/switch.py +++ b/homeassistant/components/switchbot/switch.py @@ -19,7 +19,7 @@ from .entity import SwitchbotEntity # Initialize the logger _LOGGER = logging.getLogger(__name__) -PARALLEL_UPDATES = 1 +PARALLEL_UPDATES = 0 async def async_setup_entry( diff --git a/requirements_all.txt b/requirements_all.txt index 32ac27e2fbb..8abdbd3a8f9 100644 --- a/requirements_all.txt +++ b/requirements_all.txt @@ -37,7 +37,7 @@ PyRMVtransport==0.3.3 PySocks==1.7.1 # homeassistant.components.switchbot -PySwitchbot==0.19.9 +PySwitchbot==0.19.10 # homeassistant.components.transport_nsw PyTransportNSW==0.1.1 diff --git a/requirements_test_all.txt b/requirements_test_all.txt index 8ad195aafc6..0fd9feb6b19 100644 --- a/requirements_test_all.txt +++ b/requirements_test_all.txt @@ -33,7 +33,7 @@ PyRMVtransport==0.3.3 PySocks==1.7.1 # homeassistant.components.switchbot -PySwitchbot==0.19.9 +PySwitchbot==0.19.10 # homeassistant.components.transport_nsw PyTransportNSW==0.1.1