Skip to content

Commit e38e5cf

Browse files
committed
Sigh, flake8.
1 parent 319cd84 commit e38e5cf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

jsonschema/tests/test_deprecations.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ def test_jsonschema_version(self):
88
"""
99

1010
with self.assertWarns(DeprecationWarning) as w:
11-
from jsonschema import __version__
11+
from jsonschema import __version__ # noqa
1212

1313
self.assertTrue(
1414
str(w.warning).startswith(
@@ -23,7 +23,7 @@ def test_jsonschema_validators_ErrorTree(self):
2323
"""
2424

2525
with self.assertWarns(DeprecationWarning) as w:
26-
from jsonschema.validators import ErrorTree
26+
from jsonschema.validators import ErrorTree # noqa
2727

2828
self.assertTrue(
2929
str(w.warning).startswith(

0 commit comments

Comments
 (0)