[cicd] pylint disable E0401
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed

This commit is contained in:
SouthFox 2023-06-08 14:39:27 +08:00
parent 7b66dfb351
commit 6ab583af33
2 changed files with 2 additions and 2 deletions

View file

@ -20,4 +20,4 @@ jobs:
pip install pylint
- name: Analysing the code with pylint
run: |
pylint $(git ls-files '*.py')
pylint --disable=E0401 $(git ls-files '*.py')

View file

@ -7,4 +7,4 @@ pipeline:
pylint:
image: cytopia/pylint
commands:
- find . -type f -name "*.py" | xargs pylint
- find . -type f -name "*.py" | xargs pylint --disable=E0401