diff options
author | Petr Viktorin <pviktori@redhat.com> | 2013-08-19 12:01:54 +0200 |
---|---|---|
committer | Petr Viktorin <pviktori@redhat.com> | 2013-09-06 15:42:44 +0200 |
commit | ce9182e8234fb2b723cb4e0311dabfcef80593c9 (patch) | |
tree | 8cbccfc8adea2934d3865ae5cedfa97056c854b1 /ipa-client | |
parent | b9e44e22e1ce60fda524e772ade118b8674cf205 (diff) | |
download | freeipa-ce9182e8234fb2b723cb4e0311dabfcef80593c9.tar.gz freeipa-ce9182e8234fb2b723cb4e0311dabfcef80593c9.tar.xz freeipa-ce9182e8234fb2b723cb4e0311dabfcef80593c9.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')
-rw-r--r-- | ipa-client/ipaclient/__init__.py | 3 |
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"] - |