Explicitly pass in the config_entry in openuv coordinator (#138050)
explicitly pass in the config_entry in coordinatorpull/138061/head
parent
906beb48a4
commit
91c95efb96
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in New Issue