diff options
author | reivilibre <oliverw@matrix.org> | 2021-11-04 17:10:11 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-04 17:10:11 +0000 |
commit | 499c44d69685c1c1e347ff252ad08f5dfe089a83 (patch) | |
tree | 8cf93492811fb2e7b3944e61b882d71403d713c2 /synapse/handlers/auth.py | |
parent | Additional test for `cachedList` (#11246) (diff) | |
download | synapse-499c44d69685c1c1e347ff252ad08f5dfe089a83.tar.xz |
Make minor correction to type of auth_checkers callbacks (#11253)
Diffstat (limited to 'synapse/handlers/auth.py')
-rw-r--r-- | synapse/handlers/auth.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/synapse/handlers/auth.py b/synapse/handlers/auth.py index d508d7d32a..60e59d11a0 100644 --- a/synapse/handlers/auth.py +++ b/synapse/handlers/auth.py @@ -1989,7 +1989,9 @@ class PasswordAuthProvider: self, check_3pid_auth: Optional[CHECK_3PID_AUTH_CALLBACK] = None, on_logged_out: Optional[ON_LOGGED_OUT_CALLBACK] = None, - auth_checkers: Optional[Dict[Tuple[str, Tuple], CHECK_AUTH_CALLBACK]] = None, + auth_checkers: Optional[ + Dict[Tuple[str, Tuple[str, ...]], CHECK_AUTH_CALLBACK] + ] = None, ) -> None: # Register check_3pid_auth callback if check_3pid_auth is not None: |