Add BaseNotificationService to pylint checks (#77663)
* Add BaseNotificationService to pylint checks * Remove commentpull/77642/head
parent
03b4d25564
commit
e5ac50fc57
|
@ -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",
|
||||
|
|
Loading…
Reference in New Issue