We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 26c9219 + d163bb6 commit e8dbbd3Copy full SHA for e8dbbd3
CHANGELOG.rst
@@ -15,6 +15,7 @@ Unreleased
15
**Changed**
16
17
* Switched to ``black`` for python code formatting.
18
+* Fix incompatible settings between ``black`` and ``flake8``.
19
20
**Fixed**
21
setup.cfg
@@ -3,5 +3,8 @@ universal = 1
3
4
[flake8]
5
max-line-length = 120
6
-exclude = */migrations/*
+extend-ignore =
7
+ # See https://github.com/PyCQA/pycodestyle/issues/373
8
+ E203,
9
+
10
0 commit comments