Electric Kiwi: Parallel updates (#138839)
* parallel updates * Update homeassistant/components/electric_kiwi/select.pypull/134820/head^2
parent
68085ed4f9
commit
8d39f298c0
|
@ -45,7 +45,7 @@ rules:
|
|||
entity-unavailable: done
|
||||
integration-owner: done
|
||||
log-when-unavailable: done
|
||||
parallel-updates: todo
|
||||
parallel-updates: done
|
||||
reauthentication-flow: done
|
||||
test-coverage: todo
|
||||
|
||||
|
|
|
@ -13,6 +13,8 @@ from homeassistant.helpers.update_coordinator import CoordinatorEntity
|
|||
from .const import ATTRIBUTION
|
||||
from .coordinator import ElectricKiwiConfigEntry, ElectricKiwiHOPDataCoordinator
|
||||
|
||||
PARALLEL_UPDATES = 1
|
||||
|
||||
_LOGGER = logging.getLogger(__name__)
|
||||
ATTR_EK_HOP_SELECT = "hop_select"
|
||||
|
||||
|
|
|
@ -27,6 +27,8 @@ from .coordinator import (
|
|||
ElectricKiwiHOPDataCoordinator,
|
||||
)
|
||||
|
||||
PARALLEL_UPDATES = 0
|
||||
|
||||
ATTR_EK_HOP_START = "hop_power_start"
|
||||
ATTR_EK_HOP_END = "hop_power_end"
|
||||
ATTR_TOTAL_RUNNING_BALANCE = "total_running_balance"
|
||||
|
|
Loading…
Reference in New Issue