mirror of
https://github.com/home-assistant/core.git
synced 2025-07-23 13:17:32 +00:00
Add parallel updates to Mealie (#133660)
This commit is contained in:
parent
c780933fa0
commit
2639bdbefd
@ -13,6 +13,8 @@ from homeassistant.helpers.entity_platform import AddEntitiesCallback
|
||||
from .coordinator import MealieConfigEntry, MealieMealplanCoordinator
|
||||
from .entity import MealieEntity
|
||||
|
||||
PARALLEL_UPDATES = 0
|
||||
|
||||
|
||||
async def async_setup_entry(
|
||||
hass: HomeAssistant,
|
||||
|
@ -33,7 +33,7 @@ rules:
|
||||
entity-unavailable: done
|
||||
integration-owner: done
|
||||
log-when-unavailable: done
|
||||
parallel-updates: todo
|
||||
parallel-updates: done
|
||||
reauthentication-flow: done
|
||||
test-coverage:
|
||||
status: todo
|
||||
|
@ -17,6 +17,8 @@ from homeassistant.helpers.typing import StateType
|
||||
from .coordinator import MealieConfigEntry, MealieStatisticsCoordinator
|
||||
from .entity import MealieEntity
|
||||
|
||||
PARALLEL_UPDATES = 0
|
||||
|
||||
|
||||
@dataclass(frozen=True, kw_only=True)
|
||||
class MealieStatisticsSensorEntityDescription(SensorEntityDescription):
|
||||
|
@ -20,6 +20,7 @@ from .const import DOMAIN
|
||||
from .coordinator import MealieConfigEntry, MealieShoppingListCoordinator
|
||||
from .entity import MealieEntity
|
||||
|
||||
PARALLEL_UPDATES = 0
|
||||
TODO_STATUS_MAP = {
|
||||
False: TodoItemStatus.NEEDS_ACTION,
|
||||
True: TodoItemStatus.COMPLETED,
|
||||
|
Loading…
x
Reference in New Issue
Block a user