From cb7c4c892dd1bdf37d6209b4f9dd9f9e686a270f Mon Sep 17 00:00:00 2001 From: G Johansson Date: Tue, 5 Nov 2024 19:12:37 +0100 Subject: [PATCH] Update custom_components/sector/coordinator.py --- custom_components/sector/coordinator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/custom_components/sector/coordinator.py b/custom_components/sector/coordinator.py index f79ee1f..244c435 100644 --- a/custom_components/sector/coordinator.py +++ b/custom_components/sector/coordinator.py @@ -30,7 +30,7 @@ def __init__(self, hass: HomeAssistant, entry: SectorAlarmConfigEntry) -> None: """Initialize the coordinator.""" self.hass = hass self.api = SectorAlarmAPI( - hass=self.hass, + hass=hass, email=entry.data[CONF_EMAIL], password=entry.data[CONF_PASSWORD], panel_id=entry.data[CONF_PANEL_ID],