From c472e40b2b729426ee6f302a84633ad82c8bd23d Mon Sep 17 00:00:00 2001 From: Veronica Berglyd Olsen <1619840+vkbo@users.noreply.github.com> Date: Fri, 25 Jun 2021 23:28:38 +0200 Subject: [PATCH] Fix workflow --- .github/workflows/syntax.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/syntax.yml b/.github/workflows/syntax.yml index 53ffa143..2790167f 100644 --- a/.github/workflows/syntax.yml +++ b/.github/workflows/syntax.yml @@ -25,5 +25,5 @@ jobs: flake8 tests --count --select=E9,F63,F7,F82 --show-source --statistics - name: Coding Style Violations run: | - flake8 nw --count --max-line-length=99 --ignore E221,E226,E228,E241,E251 --show-source --statistics - flake8 tests --count --max-line-length=99 --ignore E221,E226,E228,E241,E251 --show-source --statistics + flake8 nw --count --max-line-length=99 --ignore E221,E226,E228,E241 --show-source --statistics + flake8 tests --count --max-line-length=99 --ignore E221,E226,E228,E241 --show-source --statistics