Remove options from FlowResult (#117351)

pull/116371/head^2
Erik Montnemery 2024-05-13 10:11:33 +02:00 committed by GitHub
parent 90ef19a255
commit b006aadeff
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 1 additions and 1 deletions

View File

@ -262,6 +262,7 @@ class ConfigFlowResult(FlowResult, total=False):
"""Typed result dict for config flow.""" """Typed result dict for config flow."""
minor_version: int minor_version: int
options: Mapping[str, Any]
version: int version: int

View File

@ -154,7 +154,6 @@ class FlowResult(TypedDict, Generic[_HandlerT], total=False):
handler: Required[_HandlerT] handler: Required[_HandlerT]
last_step: bool | None last_step: bool | None
menu_options: Container[str] menu_options: Container[str]
options: Mapping[str, Any]
preview: str | None preview: str | None
progress_action: str progress_action: str
progress_task: asyncio.Task[Any] | None progress_task: asyncio.Task[Any] | None