CHANGE: Adjust flake8 rules to account for E402

pull/391/head
undeƒined 2024-08-18 03:33:37 +02:00
parent 344e089364
commit 9a4b5d6405
1 changed files with 1 additions and 0 deletions

View File

@ -64,6 +64,7 @@ ignore = [
"E501", # Line too long (82 > 79 characters)
"E701", # Multiple statements on one line (colon)
"B902", # Invalid first argument used for method
"E402", # Module level import not at top of file, this rule gets ignored because of wild dependencies
]
extend-ignore = [
"E722", # Do not use bare except, specify exception instead