diff options
| author | Martin Basti <mbasti@redhat.com> | 2015-12-16 19:04:20 +0100 |
|---|---|---|
| committer | Jan Cholasta <jcholast@redhat.com> | 2015-12-23 07:59:22 +0100 |
| commit | e1192ebd975bc17aa600030eecbaed6660dc7733 (patch) | |
| tree | 1a623cb4b003c234beae8075f437b8c936a4fd0f /ipalib/plugins/radiusproxy.py | |
| parent | e4075b1fe26a608cd1f3778ee1f655a5f5700c65 (diff) | |
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>
Diffstat (limited to 'ipalib/plugins/radiusproxy.py')
| -rw-r--r-- | ipalib/plugins/radiusproxy.py | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/ipalib/plugins/radiusproxy.py b/ipalib/plugins/radiusproxy.py index e30f35f9d..2a66436f5 100644 --- a/ipalib/plugins/radiusproxy.py +++ b/ipalib/plugins/radiusproxy.py @@ -17,8 +17,15 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. -from ipalib.plugins.baseldap import * +from ipalib.plugins.baseldap import ( + LDAPObject, + LDAPCreate, + LDAPDelete, + LDAPUpdate, + LDAPSearch, + LDAPRetrieve) from ipalib import api, Str, Int, Password, _, ngettext +from ipalib import errors from ipalib.plugable import Registry from ipalib.util import validate_hostname, validate_ipaddr from ipalib.errors import ValidationError |
