Change type of the config_entry in coordinator in tedee (#129502)

This commit is contained in:
Josef Zweck
2024-10-30 14:53:11 +01:00
committed by GitHub
parent 484e5cb3e8
commit 3bf2946d13

View File

@@ -39,7 +39,7 @@ type TedeeConfigEntry = ConfigEntry[TedeeApiCoordinator]
class TedeeApiCoordinator(DataUpdateCoordinator[dict[int, TedeeLock]]):
"""Class to handle fetching data from the tedee API centrally."""
config_entry: ConfigEntry
config_entry: TedeeConfigEntry
bridge: TedeeBridge
def __init__(self, hass: HomeAssistant, entry: TedeeConfigEntry) -> None: