From 7c556faf5fc0747e60d85ff2a77e8138f9fd8b6b Mon Sep 17 00:00:00 2001 From: =?utf8?q?Juan=20Luis=20Cano=20Rodr=C3=ADguez?= Date: Tue, 25 Jun 2019 16:27:02 +0200 Subject: [PATCH 1/1] Ignore broken E203 (#910) See https://github.com/python/black/issues/565 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 986efb6..dc93b37 100644 --- a/README.md +++ b/README.md @@ -293,7 +293,7 @@ you are probably already using. You'd do it like this: max-line-length = 80 ... select = C,E,F,W,B,B950 -ignore = E501,W503 +ignore = E501,W503,E203 ``` You'll find *Black*'s own .flake8 config file is configured like this. -- 2.39.2