Commit 9a3cc1cd authored by Jason R. Coombs's avatar Jason R. Coombs

Replace import * with explicit imports, allowing linter to detect the missing...

Replace import * with explicit imports, allowing linter to detect the missing imports reported in #53.
parent 7b42936d
......@@ -6,8 +6,12 @@ import shutil
import socket
import base64
from pkg_resources import (
CHECKOUT_DIST, Distribution, BINARY_DIST, normalize_path, SOURCE_DIST,
require, Environment, find_distributions, safe_name, safe_version,
to_filename, Requirement, DEVELOP_DIST,
)
from setuptools import ssl_support
from pkg_resources import *
from distutils import log
from distutils.errors import DistutilsError
from setuptools.compat import (urllib2, httplib, StringIO, HTTPError,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment