Drop use of initialize_options in androidtv_remote (#129855)
parent
80ff6dc618
commit
e9e20229a3
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue