From fcca861a2a73e986817a198036cd47316e52d903 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Luis=20Cano=20Rodr=C3=ADguez?= Date: Tue, 25 Jun 2019 08:59:47 +0200 Subject: [PATCH] Ignore broken E203 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 986efb68b7a..dc93b37c6d7 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.