From 9b42c0aa50507a223c5fd228f477bbb62e78abc3 Mon Sep 17 00:00:00 2001 From: kpj Date: Sun, 27 Feb 2022 15:46:12 +0100 Subject: [PATCH] Make pycodestyle ignore E203 See https://github.com/psf/black/issues/315 for more details. --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index de6835870..3798adf7c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -80,7 +80,7 @@ jobs: name: Codestyle run: | cd src/ - pycodestyle --max-line-length=88 + pycodestyle --max-line-length=88 --ignore=E121,E123,E126,E226,E24,E704,W503,W504,E203 codeformatting: runs-on: ubuntu-20.04 steps: