Skip to content

Commit

Permalink
chnage[
Browse files Browse the repository at this point in the history
  • Loading branch information
djeck1432 committed Nov 4, 2024
1 parent 6623cc8 commit ad731c7
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/pylint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,5 +37,8 @@ jobs:
git ls-files './apps/data_handler/*.py'
- name: Run Pylint
run:
pylint $(git ls-files 'data_handler/*.py') --disable=all --enable=C0114,C0115,C0116,C0301
run: |
files=$(git ls-files 'data_handler/*.py')
if [ -n "$files" ]; then
pylint $files --disable=all --enable=C0114,C0115,C0116,C0301
fi

0 comments on commit ad731c7

Please sign in to comment.