Remove wildcard imports

Wildcard imports should not be used.

Check for wildcard imports has been enabled in pylint.
Pylint note: options 'wildcard-import' causes too much false positive
results, so instead it I used 'unused-wildcard-import' option which has almost
the same effect.

Reviewed-By: Jan Cholasta <jcholast@redhat.com>
This commit is contained in:
Martin Basti
2015-12-16 19:04:20 +01:00
committed by Jan Cholasta
parent e4075b1fe2
commit e1192ebd97
61 changed files with 295 additions and 71 deletions

View File

@@ -25,7 +25,7 @@ from __future__ import print_function
import sys
import os
from ipapython.ipa_log_manager import *
from ipapython.ipa_log_manager import root_logger
from ipaserver.install import (replication, installutils, bindinstance,
cainstance, certs)
from ipalib import api, errors