Skip to content

Commit 935322b

Browse files
committed
ignore the remaining failures
1 parent eab55f0 commit 935322b

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

pyproject.toml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,12 @@ ignore = [
3939
"E722", # do not use bare except
4040
"E402", # module level import not at top of file
4141
"E731", # do not assign a lambda expression, use a def
42+
# to remove fix eventually
43+
"F401", # unused import
44+
"F811", # redefinition of name
45+
"B006", # mutable argument defaults
46+
"B007", # unused loop control variable
47+
"B905", # zip without explicit strict parameter
4248
]
4349
fixable = ["I"]
4450

0 commit comments

Comments
 (0)