Explicitly pass in the config_entry in openuv coordinator (#138050)

explicitly pass in the config_entry in coordinator
pull/138061/head
Michael 2025-02-09 14:53:00 +01:00 committed by GitHub
parent 906beb48a4
commit 91c95efb96
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -38,6 +38,7 @@ class OpenUvCoordinator(DataUpdateCoordinator[dict[str, Any]]):
super().__init__(
hass,
LOGGER,
config_entry=entry,
name=name,
update_method=update_method,
request_refresh_debouncer=Debouncer(
@ -48,7 +49,6 @@ class OpenUvCoordinator(DataUpdateCoordinator[dict[str, Any]]):
),
)
self._entry = entry
self.latitude = latitude
self.longitude = longitude