Skip to content

Commit e8dbbd3

Browse files
authored
Merge pull request #100 from gramaziokohler/black-vs-flake8
Fix incompatibility between flake8 and black
2 parents 26c9219 + d163bb6 commit e8dbbd3

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

CHANGELOG.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ Unreleased
1515
**Changed**
1616

1717
* Switched to ``black`` for python code formatting.
18+
* Fix incompatible settings between ``black`` and ``flake8``.
1819

1920
**Fixed**
2021

setup.cfg

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,8 @@ universal = 1
33

44
[flake8]
55
max-line-length = 120
6-
exclude = */migrations/*
6+
extend-ignore =
7+
# See https://github.com/PyCQA/pycodestyle/issues/373
8+
E203,
9+
710

0 commit comments

Comments
 (0)