lint: Disable E203 that will conflict with Black.
This commit is contained in:
parent
5a17c60987
commit
f537c7f4d5
4
.flake8
4
.flake8
|
@ -2,6 +2,10 @@
|
|||
ignore =
|
||||
# Each of these rules are ignored for the explained reason.
|
||||
|
||||
# "whitespace before ':'"
|
||||
# Black disagrees with this.
|
||||
E203,
|
||||
|
||||
# "multiple spaces before operator"
|
||||
# There are several typos here, but also several instances that are
|
||||
# being used for alignment in dict keys/values using the `dict`
|
||||
|
|
Loading…
Reference in a new issue