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

Explicitly pass in the config_entry in lametric coordinator (#138120)

explicitly pass in the config_entry in coordinator
parent 9e7f8b7b
No related branches found
No related tags found
No related merge requests found
......@@ -21,14 +21,15 @@ class LaMetricDataUpdateCoordinator(DataUpdateCoordinator[Device]):
def __init__(self, hass: HomeAssistant, entry: ConfigEntry) -> None:
"""Initialize the LaMatric coordinator."""
self.config_entry = entry
self.lametric = LaMetricDevice(
host=entry.data[CONF_HOST],
api_key=entry.data[CONF_API_KEY],
session=async_get_clientsession(hass),
)
super().__init__(hass, LOGGER, name=DOMAIN, update_interval=SCAN_INTERVAL)
super().__init__(
hass, LOGGER, config_entry=entry, name=DOMAIN, update_interval=SCAN_INTERVAL
)
async def _async_update_data(self) -> Device:
"""Fetch device information of the LaMetric device."""
......
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