From 85b974d1bc4f2921ea3efc1d0b769d9b8f26a5de Mon Sep 17 00:00:00 2001 From: Petr Viktorin Date: Mon, 19 Aug 2013 12:01:54 +0200 Subject: Remove __all__ specifications in ipaclient and ipaserver.install The __all__ list does not cause submodules to be imported, e.g. one would still have to `import ipaclient.ipachangeconf` rather than just `import ipaclient` to use `ipaclient.ipachangeconf`. Even if they did do anything, the lists were incomplete, and (since `import *` is not used on these modules) unnecessary. Pylint 1.0 reports undeclared names in __all__ as a warning. --- ipa-client/ipaclient/__init__.py | 3 --- 1 file changed, 3 deletions(-) (limited to 'ipa-client/ipaclient') diff --git a/ipa-client/ipaclient/__init__.py b/ipa-client/ipaclient/__init__.py index 39c97d2fd..65ab6ac3e 100644 --- a/ipa-client/ipaclient/__init__.py +++ b/ipa-client/ipaclient/__init__.py @@ -16,6 +16,3 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . # - -__all__ = ["ipadiscovery", "ipachangeconf"] - -- cgit