From 80fe1fbb8aabd4eb6895e446cfa88931ce5ff115 Mon Sep 17 00:00:00 2001 From: Frank Brehm Date: Tue, 30 May 2023 15:53:08 +0200 Subject: [PATCH] Make the linter happy --- lib/pp_admintools/app/remove_ldap_user.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/pp_admintools/app/remove_ldap_user.py b/lib/pp_admintools/app/remove_ldap_user.py index e1a3d93..b0dcdfa 100644 --- a/lib/pp_admintools/app/remove_ldap_user.py +++ b/lib/pp_admintools/app/remove_ldap_user.py @@ -25,7 +25,7 @@ from ..xlate import XLATOR from .ldap import LdapAppError, FatalLDAPError from .ldap import BaseLdapApplication -__version__ = '0.5.9' +__version__ = '0.5.10' LOG = logging.getLogger(__name__) _ = XLATOR.gettext @@ -161,7 +161,7 @@ class RemoveLdapUserApplication(BaseLdapApplication): LOG.error(_("No users to remove given.")) self.exit(1) - deactivate = bool(getattr(self.args, 'remove', False)) + # deactivate = bool(getattr(self.args, 'remove', False)) remove = bool(getattr(self.args, 'remove', False)) if remove: self.deactivate = False -- 2.39.5