diff options
author | Martin Basti <mbasti@redhat.com> | 2015-12-17 01:00:29 +0100 |
---|---|---|
committer | Jan Cholasta <jcholast@redhat.com> | 2015-12-23 07:59:22 +0100 |
commit | ded70b6c6ea14458eef35dede5bbc276449f4fe9 (patch) | |
tree | 59d0eb2d236a188ef4f0fe9271e247346f298b86 /ipalib/session.py | |
parent | 78254a9fdd246b87c541511380ab7b6f5cca7cc1 (diff) | |
download | freeipa-ded70b6c6ea14458eef35dede5bbc276449f4fe9.tar.gz freeipa-ded70b6c6ea14458eef35dede5bbc276449f4fe9.tar.xz freeipa-ded70b6c6ea14458eef35dede5bbc276449f4fe9.zip |
Enable pylint empty-docstring check
Enables check and fixes:
************* Module ipalib.session
ipalib/session.py:671: [C0112(empty-docstring), SessionAuthManager]
Empty class docstring)
ipalib/session.py:705: [C0112(empty-docstring),
SessionAuthManager.logout] Empty method docstring)
************* Module ipalib.cli
ipalib/cli.py:364: [C0112(empty-docstring), textui.print_entry] Empty
method docstring)
Reviewed-By: Jan Cholasta <jcholast@redhat.com>
Diffstat (limited to 'ipalib/session.py')
-rw-r--r-- | ipalib/session.py | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/ipalib/session.py b/ipalib/session.py index d04b660bd..44c29fe51 100644 --- a/ipalib/session.py +++ b/ipalib/session.py @@ -669,12 +669,8 @@ class AuthManager(object): self.debug('AuthManager.logout.%s:', self.name) class SessionAuthManager(object): - ''' - ''' def __init__(self): - ''' - ''' log_mgr.get_logger(self, True) self.auth_managers = {} @@ -703,8 +699,6 @@ class SessionAuthManager(object): def logout(self, session_data): - ''' - ''' self.debug('SessionAuthManager.logout:') for auth_mgr in self.auth_managers.values(): |