diff --git a/pylint/plugins/hass_enforce_type_hints.py b/pylint/plugins/hass_enforce_type_hints.py index e1517ede1ff0..f3c7a01a10ff 100644 --- a/pylint/plugins/hass_enforce_type_hints.py +++ b/pylint/plugins/hass_enforce_type_hints.py @@ -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={