diff --git a/.github/workflows/lint_python.yml b/.github/workflows/lint_python.yml index 6c9533d..48773d1 100644 --- a/.github/workflows/lint_python.yml +++ b/.github/workflows/lint_python.yml @@ -20,5 +20,5 @@ jobs: pip install pycodestyle pyflakes - name: Analysing the code with pycodestyle run: | - pycodestyle --first --ignore='E501,E401' $(git ls-files '*.py') + pycodestyle --first --ignore=E501,F401 $(git ls-files '*.py') pyflakes $(git ls-files '*.py')