Skip to content

Commit

Permalink
Ignore python R1737
Browse files Browse the repository at this point in the history
This ignores warning 'yield from' directly instead of yielding
each element one by one (use-yield-from)
  • Loading branch information
wargio committed Mar 7, 2024
1 parent d6fc584 commit 0de960d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ jobs:
- name: Run pylint
run: |
export PATH=${HOME}/Library/Python/3.9/bin:${HOME}/Library/Python/3.10/bin:${HOME}/.local/bin:${PATH}
find . -name "*.py" | grep -v "subprojects" | grep -v "librz/bin/format/xnu/scripts/" | xargs pylint
find . -name "*.py" | grep -v "subprojects" | grep -v "librz/bin/format/xnu/scripts/" | xargs -I % pylint --disable=R1737 '%'
licenses:
runs-on: ubuntu-22.04
Expand Down

0 comments on commit 0de960d

Please sign in to comment.