mirror of
https://github.com/home-assistant/core.git
synced 2025-08-04 21:25:13 +02:00
Drop use of initialize_options in androidtv_remote (#129855)
This commit is contained in:
@@ -226,8 +226,7 @@ class AndroidTVRemoteOptionsFlowHandler(OptionsFlow):
|
||||
|
||||
def __init__(self, config_entry: ConfigEntry) -> None:
|
||||
"""Initialize options flow."""
|
||||
self.initialize_options(config_entry)
|
||||
self._apps: dict[str, Any] = self.options.setdefault(CONF_APPS, {})
|
||||
self._apps: dict[str, Any] = dict(config_entry.options.get(CONF_APPS, {}))
|
||||
self._conf_app_id: str | None = None
|
||||
|
||||
@callback
|
||||
|
Reference in New Issue
Block a user