settings: Fix typing for AUTHENTICATION_BACKENDS.

This commit is contained in:
Wyatt Hoodes 2019-07-23 20:12:21 -10:00 committed by Tim Abbott
parent 01bc2d9e00
commit 77068f3e1e
1 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
from typing import Optional
from typing import Optional, Tuple
################################################################
# Zulip Server settings.
@ -117,7 +117,7 @@ AUTHENTICATION_BACKENDS = (
# 'zproject.backends.AzureADAuthBackend', # Microsoft Azure Active Directory auth, setup below
# 'zproject.backends.ZulipLDAPAuthBackend', # LDAP, setup below
# 'zproject.backends.ZulipRemoteUserBackend', # Local SSO, setup docs on readthedocs
)
) # type: Tuple[str, ...]
########
# Google OAuth.