Skip to content

Commit

Permalink
Update .flake8 to ignore E203
Browse files Browse the repository at this point in the history
This conflicts with black. Black converts `arr[start:end]` to `arr[start : end]`. .flake8 fails because it expects that there are not spaces before `:`
Here is the source
psf/black#315
  • Loading branch information
AhmedHathout committed Jun 13, 2023
1 parent e860f3f commit a8ee232
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions .flake8
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
[flake8]
exclude = docs
max-line-length = 119
extend-ignore = E203

0 comments on commit a8ee232

Please sign in to comment.