Need to ignore E402 - we check this with pylint

This commit is contained in:
Oliver Falk
2021-09-15 11:31:41 +02:00
parent af98487c1d
commit 0fe50c6317

View File

@@ -1,5 +1,5 @@
[flake8]
ignore = E501, W503
ignore = E501, W503, E402
max-line-length = 79
max-complexity = 18
select = B,C,E,F,W,T4,B9