Skip to content

Commit

Permalink
Fix problems with flake8 linter and E203
Browse files Browse the repository at this point in the history
E203 is broken and it is recommended to ignored it (see psf/black#280).
Currently, black correctly adds spaces around colons in some cases and
flake8 marks them as errors due to the broken E203.
  • Loading branch information
a-rmz committed Apr 26, 2021
1 parent eb83a2d commit 433bad4
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ ignore = E309
exclude = migrations
max-line-length = 120
max-complexity = 10
ignore = E203

[tool:pytest]
DJANGO_SETTINGS_MODULE = berth_reservations.settings
Expand Down

0 comments on commit 433bad4

Please sign in to comment.