ignore E203

This commit is contained in:
Renaud Boyer 2020-12-06 22:31:42 +01:00
parent c61dd9dec6
commit 73a7527b5e
1 changed files with 3 additions and 2 deletions

View File

@ -1,8 +1,9 @@
[flake8]
ignore =
E501,
# W503 is incompatible with PEP 8
W503
# W503 & E203 are not PEP 8 compliant and conflicts with black
W503,
E203
exclude =
.git,
__pycache__,