Parcourir la source

LDAP auth: make flake8 happy

"fix" small lint to keep flake8 happy.
Peter Marschall il y a 6 mois
Parent
commit
5a183e3c2b
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      radicale/auth/ldap.py

+ 1 - 1
radicale/auth/ldap.py

@@ -216,7 +216,7 @@ class Auth(auth.BaseAuth):
                 """Fill groupDNs with DNs of groups found"""
                 if len(res) > 0:
                     groupDNs = []
-                    for dn,entry in res:
+                    for dn, entry in res:
                         groupDNs.append(dn)
 
             """Close LDAP connection"""