summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSeth M. Larson <SethMichaelLarson@users.noreply.github.com>2018-04-24 12:27:15 -0500
committerGitHub <noreply@github.com>2018-04-24 12:27:15 -0500
commita0513b7f17a77b1a9c27f8c3710f23ffa404f6bc (patch)
tree59a3092ca944573e13115c9ea7f9452b11411d38
parentbbff08c49df269ad24851d4264fd3f1dbd141358 (diff)
downloadurllib3-fix-skipped-tests.tar.gz
Add noqa to import testfix-skipped-tests
-rw-r--r--test/contrib/test_pyopenssl_dependencies.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/contrib/test_pyopenssl_dependencies.py b/test/contrib/test_pyopenssl_dependencies.py
index 47989ad8..eb6a73bd 100644
--- a/test/contrib/test_pyopenssl_dependencies.py
+++ b/test/contrib/test_pyopenssl_dependencies.py
@@ -15,7 +15,7 @@ except ImportError:
def setup_module():
try:
- from urllib3.contrib.pyopenssl import inject_into_urllib3
+ from urllib3.contrib.pyopenssl import inject_into_urllib3 # noqa: F401
except ImportError as e:
pytest.skip('Could not import PyOpenSSL: %r' % e)