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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 0 deletions

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={