summaryrefslogtreecommitdiffstats
path: root/ipa-client/ipaclient
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 /ipa-client/ipaclient
parent0924177ab03d39a09bb8e9885f5d2a2f586a1eda (diff)
downloadfreeipa-85b974d1bc4f2921ea3efc1d0b769d9b8f26a5de.tar.gz
freeipa-85b974d1bc4f2921ea3efc1d0b769d9b8f26a5de.tar.xz
freeipa-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 'ipa-client/ipaclient')
-rw-r--r--ipa-client/ipaclient/__init__.py3
1 files changed, 0 insertions, 3 deletions
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 <http://www.gnu.org/licenses/>.
#
-
-__all__ = ["ipadiscovery", "ipachangeconf"]
-