Fix stub return type of `PushRuleEvaluator.run` (#14451)

This commit is contained in:
Andrew Morgan 2022-11-16 12:03:05 +00:00 committed by GitHub
parent 5cb6ad3b87
commit f844b470f6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 2 deletions

1
changelog.d/14451.misc Normal file
View File

@ -0,0 +1 @@
Fix an incorrect stub return type for `PushRuleEvaluator.run`.

View File

@ -1,4 +1,4 @@
from typing import Any, Collection, Dict, Mapping, Optional, Sequence, Set, Tuple, Union
from typing import Any, Collection, Dict, Mapping, Optional, Sequence, Tuple, Union
from synapse.types import JsonDict
@ -47,4 +47,4 @@ class PushRuleEvaluator:
push_rules: FilteredPushRules,
user_id: Optional[str],
display_name: Optional[str],
) -> Collection[dict]: ...
) -> Collection[Union[Mapping, str]]: ...