aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2015-01-14 21:24:17 -0500
committerJason R. Coombs <jaraco@jaraco.com>2015-01-14 21:24:17 -0500
commit19c95d3ef6dba78bf6431b6b13d000bc19e84cd6 (patch)
tree6bdc38ee31305657a96c7f5ee4bd79dc239a5d74
parent74637dd638a30c153d9af60688078c7e12d810d3 (diff)
downloadexternal_python_setuptools-19c95d3ef6dba78bf6431b6b13d000bc19e84cd6.tar.gz
external_python_setuptools-19c95d3ef6dba78bf6431b6b13d000bc19e84cd6.tar.bz2
external_python_setuptools-19c95d3ef6dba78bf6431b6b13d000bc19e84cd6.zip
Remove unused import
-rw-r--r--setuptools/tests/test_sandbox.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/tests/test_sandbox.py b/setuptools/tests/test_sandbox.py
index cadc4812..9a2a6b7b 100644
--- a/setuptools/tests/test_sandbox.py
+++ b/setuptools/tests/test_sandbox.py
@@ -7,7 +7,7 @@ import pytest
import pkg_resources
import setuptools.sandbox
-from setuptools.sandbox import DirectorySandbox, SandboxViolation
+from setuptools.sandbox import DirectorySandbox
class TestSandbox: