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 33e6d47 commit a5eabd1Copy full SHA for a5eabd1
tests/test_bugbear.py
@@ -60,7 +60,9 @@ def test_eval(
60
with warnings.catch_warnings():
61
if test.startswith("B012"):
62
warnings.filterwarnings("ignore", category=SyntaxWarning)
63
- errors = [e for e in bbc.run() if (test == "B950" or not e[2].startswith("B950"))]
+ errors = [
64
+ e for e in bbc.run() if (test == "B950" or not e[2].startswith("B950"))
65
+ ]
66
errors.sort()
67
assert errors == tuple_expected
68
0 commit comments