diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2022-02-11 07:20:16 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-11 07:20:16 -0500 |
commit | a121507cfec0ffce45a89f5a1019034eda5b0c70 (patch) | |
tree | 5a2f858ce5e86d2a572f4f023b76eba276308b90 /synapse/event_auth.py | |
parent | Tests: replace mocked Authenticator with the real thing (#11913) (diff) | |
download | synapse-a121507cfec0ffce45a89f5a1019034eda5b0c70.tar.xz |
Adds misc missing type hints (#11953)
Diffstat (limited to 'synapse/event_auth.py')
-rw-r--r-- | synapse/event_auth.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/synapse/event_auth.py b/synapse/event_auth.py index e885961698..19b55a9559 100644 --- a/synapse/event_auth.py +++ b/synapse/event_auth.py @@ -763,7 +763,9 @@ def get_named_level(auth_events: StateMap[EventBase], name: str, default: int) - return default -def _verify_third_party_invite(event: EventBase, auth_events: StateMap[EventBase]): +def _verify_third_party_invite( + event: EventBase, auth_events: StateMap[EventBase] +) -> bool: """ Validates that the invite event is authorized by a previous third-party invite. |