CHANGE: Adjust flake8 rules to account for E402
parent
344e089364
commit
9a4b5d6405
|
@ -64,6 +64,7 @@ ignore = [
|
||||||
"E501", # Line too long (82 > 79 characters)
|
"E501", # Line too long (82 > 79 characters)
|
||||||
"E701", # Multiple statements on one line (colon)
|
"E701", # Multiple statements on one line (colon)
|
||||||
"B902", # Invalid first argument used for method
|
"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 = [
|
extend-ignore = [
|
||||||
"E722", # Do not use bare except, specify exception instead
|
"E722", # Do not use bare except, specify exception instead
|
||||||
|
|
Loading…
Reference in New Issue