""" Switch platform for Tibber Prices integration. Provides configurable switch entities for runtime overrides of Best Price and Peak Price period calculation boolean settings (enable_min_periods). When enabled, these entities take precedence over the options flow settings. When disabled (default), the options flow settings are used. """ from __future__ import annotations from typing import TYPE_CHECKING from .core import TibberPricesConfigSwitch from .definitions import SWITCH_ENTITY_DESCRIPTIONS if TYPE_CHECKING: from custom_components.tibber_prices.data import TibberPricesConfigEntry from homeassistant.core import HomeAssistant from homeassistant.helpers.entity_platform import AddEntitiesCallback async def async_setup_entry( _hass: HomeAssistant, entry: TibberPricesConfigEntry, async_add_entities: AddEntitiesCallback, ) -> None: """Set up Tibber Prices switch entities based on a config entry.""" coordinator = entry.runtime_data.coordinator async_add_entities( TibberPricesConfigSwitch( coordinator=coordinator, entity_description=entity_description, ) for entity_description in SWITCH_ENTITY_DESCRIPTIONS )