1
0
Fork 0
mirror of https://github.com/Kozea/Radicale.git synced 2025-09-15 20:36:55 +00:00

LDAP auth: make flake8 happy

"fix" small lint to keep flake8 happy.
This commit is contained in:
Peter Marschall 2025-08-31 20:43:10 +02:00
parent 5f677fc77e
commit 5a183e3c2b

View file

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