From f7caad9af9fd45f58a75619480b88dd5321d7f00 Mon Sep 17 00:00:00 2001 From: kpj Date: Sun, 27 Feb 2022 15:42:26 +0100 Subject: [PATCH] Run pycodestyle with --max-line-length=88 to match black's defaults --- .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 dac78abe1..de6835870 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -80,7 +80,7 @@ jobs: name: Codestyle run: | cd src/ - pycodestyle + pycodestyle --max-line-length=88 codeformatting: runs-on: ubuntu-20.04 steps: