diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2022-03-11 07:06:21 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-11 07:06:21 -0500 |
commit | bc9dff1d9597251a15a15475cb8e8194b2d14910 (patch) | |
tree | 1ce61e281d4720fb6f9428e69a87095b35352a44 /synapse/storage/databases/main | |
parent | Note that contributors can sign off privately (#12204) (diff) | |
download | synapse-bc9dff1d9597251a15a15475cb8e8194b2d14910.tar.xz |
Remove unnecessary pass statements. (#12206)
Diffstat (limited to 'synapse/storage/databases/main')
-rw-r--r-- | synapse/storage/databases/main/registration.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/synapse/storage/databases/main/registration.py b/synapse/storage/databases/main/registration.py index dc6665237a..a698d10cc5 100644 --- a/synapse/storage/databases/main/registration.py +++ b/synapse/storage/databases/main/registration.py @@ -48,8 +48,6 @@ class ExternalIDReuseException(Exception): """Exception if writing an external id for a user fails, because this external id is given to an other user.""" - pass - @attr.s(frozen=True, slots=True, auto_attribs=True) class TokenLookupResult: |