From 6b35ff323a9fac4a8f801dc5e95a3b1b4f46993b Mon Sep 17 00:00:00 2001 From: raiden00pl Date: Mon, 17 Apr 2023 10:25:42 +0200 Subject: [PATCH] github/linters/setup.cfg: ignore E203 for flake8 to fix compatibility issues with black For more details, see https://black.readthedocs.io/en/stable/guides/using_black_with_other_tools.html#flake8 --- .github/linters/setup.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/linters/setup.cfg b/.github/linters/setup.cfg index 9c18e21fe..b0224c147 100644 --- a/.github/linters/setup.cfg +++ b/.github/linters/setup.cfg @@ -1,5 +1,5 @@ [flake8] -ignore = W503,W605 +ignore = W503,W605,E203 max-complexity = 27 max-line-length = 125 show-source = True