diff --git a/pylint/plugins/hass_enforce_type_hints.py b/pylint/plugins/hass_enforce_type_hints.py index 2a709c6debe..289f461c223 100644 --- a/pylint/plugins/hass_enforce_type_hints.py +++ b/pylint/plugins/hass_enforce_type_hints.py @@ -1873,6 +1873,20 @@ _INHERITANCE_MATCH: dict[str, list[ClassTypeHintMatch]] = { ], ), ], + "notify": [ + ClassTypeHintMatch( + base_class="BaseNotificationService", + matches=[ + TypeHintMatch( + function_name="send_message", + arg_types={1: "str"}, + kwargs_type="Any", + return_type=None, + has_async_counterpart=True, + ), + ], + ), + ], "remote": [ ClassTypeHintMatch( base_class="Entity",