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.
This commit is contained in:
Petr Viktorin 2013-08-19 12:01:54 +02:00
parent 0924177ab0
commit 85b974d1bc
2 changed files with 0 additions and 5 deletions

View File

@ -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"]

View File

@ -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"]