From 687d162a941938bda9839d1a9bcacfbc02afbeae Mon Sep 17 00:00:00 2001 From: epenet <6771947+epenet@users.noreply.github.com> Date: Tue, 22 Nov 2022 12:45:35 +0100 Subject: [PATCH] Fix incorrect type hint in SchemaOptionsFlow (#82516) --- homeassistant/helpers/schema_config_entry_flow.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/helpers/schema_config_entry_flow.py b/homeassistant/helpers/schema_config_entry_flow.py index 413161eb150..405d9333776 100644 --- a/homeassistant/helpers/schema_config_entry_flow.py +++ b/homeassistant/helpers/schema_config_entry_flow.py @@ -306,7 +306,7 @@ class SchemaOptionsFlowHandler(config_entries.OptionsFlow): def __init__( self, 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], ) -> None: """Initialize options flow."""