From fbf309d3e3b529f6ff0d57ecbb22514755b1154d Mon Sep 17 00:00:00 2001 From: "Jason R. Coombs" Date: Mon, 23 Jun 2014 17:00:01 -0400 Subject: Remove unused imports, unused variables, and excess whitespace --- setuptools/tests/test_develop.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'setuptools/tests/test_develop.py') diff --git a/setuptools/tests/test_develop.py b/setuptools/tests/test_develop.py index 18f35c0f..66d182eb 100644 --- a/setuptools/tests/test_develop.py +++ b/setuptools/tests/test_develop.py @@ -9,8 +9,6 @@ import unittest from distutils.errors import DistutilsError from setuptools.command.develop import develop -from setuptools.command import easy_install as easy_install_pkg -from setuptools.compat import StringIO from setuptools.dist import Distribution SETUP_PY = """\ @@ -114,11 +112,11 @@ class TestDevelopTest(unittest.TestCase): os.chdir(self.dir) try: try: - dist = Distribution({'setup_requires': ['I_DONT_EXIST']}) + Distribution({'setup_requires': ['I_DONT_EXIST']}) except DistutilsError: e = sys.exc_info()[1] error = str(e) - if error == wanted: + if error == wanted: pass finally: os.chdir(old_dir) -- cgit v1.2.3