summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulian Berman <Julian@GrayVines.com>2021-08-21 16:31:46 +0100
committerJulian Berman <Julian@GrayVines.com>2021-08-21 16:31:46 +0100
commite38e5cfa97065cb5dbbcdf0e05ca2db3dbc06751 (patch)
tree770732fca1506aee9ab63012f43f14784e283cb4
parent319cd84470939bb274a70e25ce12e2240b22720d (diff)
downloadjsonschema-e38e5cfa97065cb5dbbcdf0e05ca2db3dbc06751.tar.gz
Sigh, flake8.
-rw-r--r--jsonschema/tests/test_deprecations.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/jsonschema/tests/test_deprecations.py b/jsonschema/tests/test_deprecations.py
index 7d51a41..18d8622 100644
--- a/jsonschema/tests/test_deprecations.py
+++ b/jsonschema/tests/test_deprecations.py
@@ -8,7 +8,7 @@ class TestDeprecations(TestCase):
"""
with self.assertWarns(DeprecationWarning) as w:
- from jsonschema import __version__
+ from jsonschema import __version__ # noqa
self.assertTrue(
str(w.warning).startswith(
@@ -23,7 +23,7 @@ class TestDeprecations(TestCase):
"""
with self.assertWarns(DeprecationWarning) as w:
- from jsonschema.validators import ErrorTree
+ from jsonschema.validators import ErrorTree # noqa
self.assertTrue(
str(w.warning).startswith(