We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 319cd84 commit e38e5cfCopy full SHA for e38e5cf
jsonschema/tests/test_deprecations.py
@@ -8,7 +8,7 @@ def test_jsonschema_version(self):
8
"""
9
10
with self.assertWarns(DeprecationWarning) as w:
11
- from jsonschema import __version__
+ from jsonschema import __version__ # noqa
12
13
self.assertTrue(
14
str(w.warning).startswith(
@@ -23,7 +23,7 @@ def test_jsonschema_validators_ErrorTree(self):
23
24
25
26
- from jsonschema.validators import ErrorTree
+ from jsonschema.validators import ErrorTree # noqa
27
28
29
0 commit comments