From a739a67f865543f59aa9d758236a47c9b4099ba0 Mon Sep 17 00:00:00 2001 From: hodanov <1031hoda@gmail.com> Date: Fri, 1 Dec 2023 00:44:40 +0900 Subject: [PATCH] Add ignore linter. --- .github/workflows/lint_python.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/lint_python.yml b/.github/workflows/lint_python.yml index 32f9f1b..6c9533d 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,F401' $(git ls-files '*.py') + pycodestyle --first --ignore='E501,E401' $(git ls-files '*.py') pyflakes $(git ls-files '*.py')