Skip to content

Commit ccef31a

Browse files
authored
Set PARALLEL_UPDATES in Whirlpool integration (#152065)
1 parent 6a482b1 commit ccef31a

File tree

3 files changed

+4
-0
lines changed

3 files changed

+4
-0
lines changed

homeassistant/components/whirlpool/binary_sensor.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
from . import WhirlpoolConfigEntry
1818
from .entity import WhirlpoolEntity
1919

20+
PARALLEL_UPDATES = 1
2021
SCAN_INTERVAL = timedelta(minutes=5)
2122

2223

homeassistant/components/whirlpool/climate.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@
2525
from . import WhirlpoolConfigEntry
2626
from .entity import WhirlpoolEntity
2727

28+
PARALLEL_UPDATES = 1
29+
2830
AIRCON_MODE_MAP = {
2931
AirconMode.Cool: HVACMode.COOL,
3032
AirconMode.Heat: HVACMode.HEAT,

homeassistant/components/whirlpool/sensor.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
from . import WhirlpoolConfigEntry
2525
from .entity import WhirlpoolEntity
2626

27+
PARALLEL_UPDATES = 1
2728
SCAN_INTERVAL = timedelta(minutes=5)
2829

2930
WASHER_TANK_FILL = {

0 commit comments

Comments
 (0)