aboutsummaryrefslogtreecommitdiffstats
path: root/setuptools/package_index.py
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2017-01-16 14:37:02 -0500
committerJason R. Coombs <jaraco@jaraco.com>2017-01-16 14:40:15 -0500
commitb9ca305f48b5da7cfe0f831fdc32dc0aa3890035 (patch)
treefd43c2565ffad537c9c2ae1b079f70b9b5b72aa7 /setuptools/package_index.py
parente316a702071feecc059102e032439e8ca0551c1a (diff)
downloadexternal_python_setuptools-b9ca305f48b5da7cfe0f831fdc32dc0aa3890035.tar.gz
external_python_setuptools-b9ca305f48b5da7cfe0f831fdc32dc0aa3890035.tar.bz2
external_python_setuptools-b9ca305f48b5da7cfe0f831fdc32dc0aa3890035.zip
Remove unused imports
Diffstat (limited to 'setuptools/package_index.py')
-rwxr-xr-xsetuptools/package_index.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/setuptools/package_index.py b/setuptools/package_index.py
index d80d43bc..5c25c9d6 100755
--- a/setuptools/package_index.py
+++ b/setuptools/package_index.py
@@ -17,10 +17,9 @@ except ImportError:
from setuptools.extern import six
from setuptools.extern.six.moves import urllib, http_client, configparser, map
-import setuptools
from pkg_resources import (
CHECKOUT_DIST, Distribution, BINARY_DIST, normalize_path, SOURCE_DIST,
- require, Environment, find_distributions, safe_name, safe_version,
+ Environment, find_distributions, safe_name, safe_version,
to_filename, Requirement, DEVELOP_DIST,
)
from setuptools import ssl_support