Remove options from FlowResult (#117351)
parent
90ef19a255
commit
b006aadeff
|
@ -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
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue