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