From 7345d8ed8fcd4426f8af3a2d7d9833fcf50e32ff Mon Sep 17 00:00:00 2001
From: Julian Rother <julianr@fsmpi.rwth-aachen.de>
Date: Mon, 19 Oct 2020 23:37:20 +0200
Subject: [PATCH] Removed superfluous whitespace and fixed other linter
 warnings

---
 ldap.py | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/ldap.py b/ldap.py
index ef5430e..47a079e 100644
--- a/ldap.py
+++ b/ldap.py
@@ -7,9 +7,9 @@ if 'LDAP_HOST' in config:
 	import ldap3
 
 	def ldapauth(user, password): # pylint: disable=function-redefined
-		if(LDAP_USERRE.search(user)):
+		if LDAP_USERRE.search(user):
 			return {}, []
-		try: 
+		try:
 			server = ldap3.Server(config['LDAP_HOST'], port=config['LDAP_PORT'], use_ssl=True)
 			conn = ldap3.Connection(server, 'fsmpi\\%s'%user, password, auto_bind=True, check_names=False)
 		except (ldap3.core.exceptions.LDAPBindError, ldap3.core.exceptions.LDAPPasswordIsMandatoryError):
@@ -27,7 +27,7 @@ else:
 	}
 
 	def ldapauth(user, password): # pylint: disable=function-redefined
-		if(LDAP_USERRE.search(user)):
+		if LDAP_USERRE.search(user):
 			return {}, []
 		if config.get('DEBUG') and user in NOTLDAP and password == NOTLDAP[user][0]:
 			return NOTLDAP[user][2], NOTLDAP[user][1]
-- 
GitLab