aboutsummaryrefslogtreecommitdiffstats
path: root/setuptools/tests/test_packageindex.py
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2016-07-20 11:53:29 -0400
committerGitHub <noreply@github.com>2016-07-20 11:53:29 -0400
commitd5f38148ef994724811fea55d4c6dc392f97b429 (patch)
tree75133a283a02cba07c37ccb76a7134acd744a591 /setuptools/tests/test_packageindex.py
parent39374cb5747b8cc18240f474d10d17913f203b67 (diff)
parent01de794bc829cc9eb0c1512b3570acec970e1acf (diff)
downloadexternal_python_setuptools-d5f38148ef994724811fea55d4c6dc392f97b429.tar.gz
external_python_setuptools-d5f38148ef994724811fea55d4c6dc392f97b429.tar.bz2
external_python_setuptools-d5f38148ef994724811fea55d4c6dc392f97b429.zip
Merge pull request #655 from stepshal/imorts_in_same_block
Put imports in same block alphabeticaly.
Diffstat (limited to 'setuptools/tests/test_packageindex.py')
-rw-r--r--setuptools/tests/test_packageindex.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/tests/test_packageindex.py b/setuptools/tests/test_packageindex.py
index b2b0d537..f9bf895b 100644
--- a/setuptools/tests/test_packageindex.py
+++ b/setuptools/tests/test_packageindex.py
@@ -7,10 +7,10 @@ import distutils.errors
from setuptools.extern import six
from setuptools.extern.six.moves import urllib, http_client
-from .textwrap import DALS
import pkg_resources
import setuptools.package_index
from setuptools.tests.server import IndexServer
+from .textwrap import DALS
class TestPackageIndex: