diff options
author | Andrew Morgan <1342360+anoadragon453@users.noreply.github.com> | 2020-08-28 14:15:25 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-28 14:15:25 +0100 |
commit | d6addba84e86a8f3197a8be9efec99981b5b2d71 (patch) | |
tree | cad5544f871a9e32fbc78951ebc0d1cf25e63161 | |
parent | Merge branch 'develop' of github.com:matrix-org/synapse into anoa/password_re... (diff) | |
download | synapse-d6addba84e86a8f3197a8be9efec99981b5b2d71.tar.xz |
Update synapse/rest/client/v2_alpha/account.py
Co-authored-by: Richard van der Hoff <1389908+richvdh@users.noreply.github.com>
-rw-r--r-- | synapse/rest/client/v2_alpha/account.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/rest/client/v2_alpha/account.py b/synapse/rest/client/v2_alpha/account.py index 72ec0960cb..67b5bf049c 100644 --- a/synapse/rest/client/v2_alpha/account.py +++ b/synapse/rest/client/v2_alpha/account.py @@ -217,7 +217,7 @@ class PasswordResetConfirmationSubmitTokenServlet(RestServlet): Args: hs: server """ - super(PasswordResetConfirmationSubmitTokenServlet, self).__init__() + super().__init__() self.hs = hs self.clock = hs.get_clock() self.store = hs.get_datastore() |