Drop use of initialize_options in androidtv_remote (#129855)

pull/129870/head^2
epenet 2024-11-05 10:57:03 +01:00 committed by GitHub
parent 80ff6dc618
commit e9e20229a3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 2 deletions

View File

@ -226,8 +226,7 @@ class AndroidTVRemoteOptionsFlowHandler(OptionsFlow):
def __init__(self, config_entry: ConfigEntry) -> None: def __init__(self, config_entry: ConfigEntry) -> None:
"""Initialize options flow.""" """Initialize options flow."""
self.initialize_options(config_entry) self._apps: dict[str, Any] = dict(config_entry.options.get(CONF_APPS, {}))
self._apps: dict[str, Any] = self.options.setdefault(CONF_APPS, {})
self._conf_app_id: str | None = None self._conf_app_id: str | None = None
@callback @callback