From 5a183e3c2b3504ccd59f4f74300e8c05055fbfc5 Mon Sep 17 00:00:00 2001 From: Peter Marschall Date: Sun, 31 Aug 2025 20:43:10 +0200 Subject: [PATCH] LDAP auth: make flake8 happy "fix" small lint to keep flake8 happy. --- radicale/auth/ldap.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/radicale/auth/ldap.py b/radicale/auth/ldap.py index 15bf89ea..54f29e08 100644 --- a/radicale/auth/ldap.py +++ b/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"""