diff --git a/homeassistant/config_entries.py b/homeassistant/config_entries.py index 0a1187346cb..598a03f927f 100644 --- a/homeassistant/config_entries.py +++ b/homeassistant/config_entries.py @@ -262,6 +262,7 @@ class ConfigFlowResult(FlowResult, total=False): """Typed result dict for config flow.""" minor_version: int + options: Mapping[str, Any] version: int diff --git a/homeassistant/data_entry_flow.py b/homeassistant/data_entry_flow.py index 652f836e96a..8e93c14cfd5 100644 --- a/homeassistant/data_entry_flow.py +++ b/homeassistant/data_entry_flow.py @@ -154,7 +154,6 @@ class FlowResult(TypedDict, Generic[_HandlerT], total=False): handler: Required[_HandlerT] last_step: bool | None menu_options: Container[str] - options: Mapping[str, Any] preview: str | None progress_action: str progress_task: asyncio.Task[Any] | None