mirror of
https://github.com/home-assistant/core.git
synced 2025-07-23 21:27:38 +00:00
Fix incorrect type hint in SchemaOptionsFlow (#82516)
This commit is contained in:
parent
9d192643ee
commit
687d162a94
@ -306,7 +306,7 @@ class SchemaOptionsFlowHandler(config_entries.OptionsFlow):
|
|||||||
def __init__(
|
def __init__(
|
||||||
self,
|
self,
|
||||||
config_entry: config_entries.ConfigEntry,
|
config_entry: config_entries.ConfigEntry,
|
||||||
options_flow: dict[str, vol.Schema],
|
options_flow: dict[str, SchemaFlowFormStep | SchemaFlowMenuStep],
|
||||||
async_options_flow_finished: Callable[[HomeAssistant, Mapping[str, Any]], None],
|
async_options_flow_finished: Callable[[HomeAssistant, Mapping[str, Any]], None],
|
||||||
) -> None:
|
) -> None:
|
||||||
"""Initialize options flow."""
|
"""Initialize options flow."""
|
||||||
|
Loading…
x
Reference in New Issue
Block a user