Skip to content

Commit 7fd22bc

Browse files
committed
[FIX] pyproject.toml: ignore ruff B904, not python2 compatible
Part-of: #4
1 parent 4958d6b commit 7fd22bc

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ line-length = 120
3030
fix = true
3131
show-fixes = true
3232
ignore = [
33+
"B904", # raise-without-from-inside-except; not python2 compatible
3334
"B905", # zip-without-explicit-strict; not python2 compatible
3435
"E501", # line-too-long; handled by `black` formatting
3536
"E731", # lambda-assignment

0 commit comments

Comments
 (0)