From fc81cd460be6ae781f8cb337587c2d493b784976 Mon Sep 17 00:00:00 2001 From: Sanchayan Maity Date: Thu, 29 Apr 2021 11:46:00 +0530 Subject: [PATCH] pycodestyle: Ignore W503 Ignore Line break occurred before a binary operator (W503). --- pycodestyle/.config/pycodestyle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pycodestyle/.config/pycodestyle b/pycodestyle/.config/pycodestyle index 36021fe..f9416d6 100644 --- a/pycodestyle/.config/pycodestyle +++ b/pycodestyle/.config/pycodestyle @@ -1,4 +1,4 @@ [pycodestyle] count = False -ignore = E501 +ignore = E501,W503 statistics = True