diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2020-08-18 16:20:49 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-18 16:20:49 -0400 |
commit | f40645e60b9cab69c953094848be61c0989a91cb (patch) | |
tree | 2ac850ce839e12a423871860bf288a313a0e1a92 /synapse/event_auth.py | |
parent | Add a link to the matrix-synapse-rest-password-provider. (#8111) (diff) | |
download | synapse-f40645e60b9cab69c953094848be61c0989a91cb.tar.xz |
Convert events worker database to async/await. (#8071)
Diffstat (limited to 'synapse/event_auth.py')
-rw-r--r-- | synapse/event_auth.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/event_auth.py b/synapse/event_auth.py index c0981eee62..8c907ad596 100644 --- a/synapse/event_auth.py +++ b/synapse/event_auth.py @@ -47,7 +47,7 @@ def check( Args: room_version_obj: the version of the room event: the event being checked. - auth_events (dict: event-key -> event): the existing room state. + auth_events: the existing room state. Raises: AuthError if the checks fail |