From feb663ffb67ef7679661a3c9f2c09f992bc50cd6 Mon Sep 17 00:00:00 2001 From: Aditya Bansal Date: Sun, 4 Jun 2017 15:08:23 +0530 Subject: [PATCH] pep8: Add compliance with rule E261 backends.py. --- zproject/backends.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/zproject/backends.py b/zproject/backends.py index fac2d0c0e7..483cc3165d 100644 --- a/zproject/backends.py +++ b/zproject/backends.py @@ -109,7 +109,7 @@ class ZulipAuthMixin(object): return None class SocialAuthMixin(ZulipAuthMixin): - auth_backend_name = None # type: Text + auth_backend_name = None # type: Text def get_email_address(self, *args, **kwargs): # type: (*Any, **Any) -> Text @@ -556,4 +556,4 @@ AUTH_BACKEND_NAME_MAP = { u'Google': GoogleMobileOauth2Backend, u'LDAP': ZulipLDAPAuthBackend, u'RemoteUser': ZulipRemoteUserBackend, -} # type: Dict[Text, Any] +} # type: Dict[Text, Any]