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. --- ipaserver/install/__init__.py | 2 -- 1 file changed, 2 deletions(-) (limited to 'ipaserver/install') diff --git a/ipaserver/install/__init__.py b/ipaserver/install/__init__.py index bc222941..fc08ea43 100644 --- a/ipaserver/install/__init__.py +++ b/ipaserver/install/__init__.py @@ -17,5 +17,3 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . # - -__all__ = ["dsinstance", "krbinstance"] -- cgit