.flake8: ignore E221 multiple spaces before operator

This commit is contained in:
Peter Barker 2021-02-17 10:33:19 +11:00 committed by Peter Barker
parent 4d33e7dc80
commit d183d4c91b
1 changed files with 3 additions and 1 deletions

View File

@ -11,6 +11,8 @@ ignore =
# W504 line break after binary operator
W504,
# E203 whitespace before ':'
E203
E203,
# E221 multiple spaces before operator
E221
max-line-length = 127