summaryrefslogtreecommitdiffstats
path: root/ipaserver/install/__init__.py
diff options
context:
space:
mode:
authorPetr Viktorin <pviktori@redhat.com>2013-08-19 12:01:54 +0200
committerPetr Viktorin <pviktori@redhat.com>2013-09-06 15:42:33 +0200
commit85b974d1bc4f2921ea3efc1d0b769d9b8f26a5de (patch)
tree14c6e3c52a480595628042c4f8e6e9dedf9d2fe6 /ipaserver/install/__init__.py
parent0924177ab03d39a09bb8e9885f5d2a2f586a1eda (diff)
downloadfreeipa.git-85b974d1bc4f2921ea3efc1d0b769d9b8f26a5de.tar.gz
freeipa.git-85b974d1bc4f2921ea3efc1d0b769d9b8f26a5de.tar.xz
freeipa.git-85b974d1bc4f2921ea3efc1d0b769d9b8f26a5de.zip
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.
Diffstat (limited to 'ipaserver/install/__init__.py')
-rw-r--r--ipaserver/install/__init__.py2
1 files changed, 0 insertions, 2 deletions
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 <http://www.gnu.org/licenses/>.
#
-
-__all__ = ["dsinstance", "krbinstance"]