mirror of
https://github.com/home-assistant/core.git
synced 2025-07-13 16:27:08 +00:00
Drop use of initialize_options in androidtv_remote (#129855)
This commit is contained in:
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…
x
Reference in New Issue
Block a user