Skip to content

Commit

Permalink
Merge branch 'main' into add_get_files_method
Browse files Browse the repository at this point in the history
  • Loading branch information
golharam committed Feb 13, 2025
2 parents a79ed6d + fa4fab3 commit 7351e85
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,4 @@ jobs:
- name: Analysing the code with pylint
run: |
pylint --max-line-length=120 --ignore-imports=y $(git ls-files '*.py')
make lint
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,5 @@ test:
coverage html

lint:
pylint --max-line-length=120 --ignore-imports=y --exit-zero $$(git ls-files '*.py')
find . -name "*.py" | xargs pylint --max-line-length=120 --ignore-imports=y --exit-zero

0 comments on commit 7351e85

Please sign in to comment.