From 53ee415b20e989fcea7d7f522826a682405c29dd Mon Sep 17 00:00:00 2001 From: Kevin Deldycke Date: Mon, 7 Dec 2020 10:30:14 +0100 Subject: [PATCH] Temporary fix pycodestyle error. The bug is being discussed at: https://github.com/PyCQA/pycodestyle/pull/914 --- setup.cfg | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index 47535f96..b94ce3bb 100644 --- a/setup.cfg +++ b/setup.cfg @@ -7,7 +7,9 @@ allow_dirty = True # https://pycodestyle.readthedocs.io/en/latest/intro.html#configuration [pycodestyle] # https://pycodestyle.readthedocs.io/en/latest/intro.html#error-codes -ignore = +# E203: Temporary ignore while we wait for +# https://github.com/PyCQA/pycodestyle/pull/914 to be merged. +ignore = E203 show-source = True statistics = True # Aligns to black's config.