Skip to content
Snippets Groups Projects
Commit 24d7cd5b authored by David Douard's avatar David Douard
Browse files

template: Ignore E704 in flake8 config

This is needed to make black 24.8 and flake8 play nicely with each
other, see
https://black.readthedocs.io/en/stable/guides/using_black_with_other_tools.html#e701-e704
parent c2d9b7d9
No related branches found
Tags v0.1.2
No related merge requests found
Pipeline #10451 passed
......@@ -4,5 +4,5 @@
# E501: line too long, use B950 warning from flake8-bugbear instead
# W503: line break before binary operator <https://github.com/psf/black/issues/52>
select = C,E,F,W,B950
ignore = E203,E231,E501,W503
ignore = E203,E231,E501,E704,W503
max-line-length = 88
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment