diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2015-01-14 21:24:17 -0500 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2015-01-14 21:24:17 -0500 |
commit | 19c95d3ef6dba78bf6431b6b13d000bc19e84cd6 (patch) | |
tree | 6bdc38ee31305657a96c7f5ee4bd79dc239a5d74 /setuptools/tests/test_sandbox.py | |
parent | 74637dd638a30c153d9af60688078c7e12d810d3 (diff) | |
download | external_python_setuptools-19c95d3ef6dba78bf6431b6b13d000bc19e84cd6.tar.gz external_python_setuptools-19c95d3ef6dba78bf6431b6b13d000bc19e84cd6.tar.bz2 external_python_setuptools-19c95d3ef6dba78bf6431b6b13d000bc19e84cd6.zip |
Remove unused import
Diffstat (limited to 'setuptools/tests/test_sandbox.py')
-rw-r--r-- | setuptools/tests/test_sandbox.py | 2 |
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: |