Enforce config-flow type hints for reauth step (#72830)

This commit is contained in:
epenet
2022-06-28 10:52:41 +02:00
committed by GitHub
parent 6eeb1855ff
commit 28c1a5c09f

View File

@@ -421,6 +421,13 @@ _CLASS_MATCH: dict[str, list[ClassTypeHintMatch]] = {
},
return_type="FlowResult",
),
TypeHintMatch(
function_name="async_step_reauth",
arg_types={
1: "Mapping[str, Any]",
},
return_type="FlowResult",
),
TypeHintMatch(
function_name="async_step_ssdp",
arg_types={