Skip to content
Snippets Groups Projects
Unverified Commit 284a7093 authored by Michael's avatar Michael Committed by GitHub
Browse files

Explicitly pass in the config_entry in lacrosse_view coordinator (#138122)

explicitly pass in the config_entry in coordinator
parent 4705df9e
No related branches found
No related tags found
No related merge requests found
......@@ -30,7 +30,7 @@ async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool:
except LoginError as error:
raise ConfigEntryAuthFailed from error
coordinator = LaCrosseUpdateCoordinator(hass, api, entry)
coordinator = LaCrosseUpdateCoordinator(hass, entry, api)
_LOGGER.debug("First refresh")
await coordinator.async_config_entry_first_refresh()
......
......@@ -27,12 +27,13 @@ class LaCrosseUpdateCoordinator(DataUpdateCoordinator[list[Sensor]]):
id: str
hass: HomeAssistant
devices: list[Sensor] | None = None
config_entry: ConfigEntry
def __init__(
self,
hass: HomeAssistant,
api: LaCrosse,
entry: ConfigEntry,
api: LaCrosse,
) -> None:
"""Initialize DataUpdateCoordinator for LaCrosse View."""
self.api = api
......@@ -45,6 +46,7 @@ class LaCrosseUpdateCoordinator(DataUpdateCoordinator[list[Sensor]]):
super().__init__(
hass,
_LOGGER,
config_entry=entry,
name="LaCrosse View",
update_interval=timedelta(seconds=SCAN_INTERVAL),
)
......
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