Skip to content
Snippets Groups Projects
Unverified Commit 6266a415 authored by G Johansson's avatar G Johansson Committed by GitHub
Browse files

Explicitly set config entry in Trafikverket Train coordinator (#134304)

parent a9949a0a
No related branches found
No related tags found
No related merge requests found
......@@ -19,7 +19,7 @@ _LOGGER = logging.getLogger(__name__)
async def async_setup_entry(hass: HomeAssistant, entry: TVTrainConfigEntry) -> bool:
"""Set up Trafikverket Train from a config entry."""
coordinator = TVDataUpdateCoordinator(hass)
coordinator = TVDataUpdateCoordinator(hass, entry)
await coordinator.async_config_entry_first_refresh()
entry.runtime_data = coordinator
......
......@@ -74,22 +74,21 @@ class TVDataUpdateCoordinator(DataUpdateCoordinator[TrainData]):
from_station: StationInfoModel
to_station: StationInfoModel
def __init__(self, hass: HomeAssistant) -> None:
def __init__(self, hass: HomeAssistant, config_entry: TVTrainConfigEntry) -> None:
"""Initialize the Trafikverket coordinator."""
super().__init__(
hass,
_LOGGER,
config_entry=config_entry,
name=DOMAIN,
update_interval=TIME_BETWEEN_UPDATES,
)
self._train_api = TrafikverketTrain(
async_get_clientsession(hass), self.config_entry.data[CONF_API_KEY]
)
self._time: time | None = dt_util.parse_time(self.config_entry.data[CONF_TIME])
self._weekdays: list[str] = self.config_entry.data[CONF_WEEKDAY]
self._filter_product: str | None = self.config_entry.options.get(
CONF_FILTER_PRODUCT
async_get_clientsession(hass), config_entry.data[CONF_API_KEY]
)
self._time: time | None = dt_util.parse_time(config_entry.data[CONF_TIME])
self._weekdays: list[str] = config_entry.data[CONF_WEEKDAY]
self._filter_product: str | None = config_entry.options.get(CONF_FILTER_PRODUCT)
async def _async_setup(self) -> None:
"""Initiate stations."""
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment