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 authored and XVilka committed Dec 19, 2024
1 parent 6265b11 commit f1af5c8
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 @@ -166,7 +166,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 f1af5c8

Please sign in to comment.