Ignore python R1737
This ignores warning 'yield from' directly instead of yielding each element one by one (use-yield-from)
This commit is contained in:
parent
d6fc5845aa
commit
0de960d891
1 changed files with 1 additions and 1 deletions
2
.github/workflows/linter.yml
vendored
2
.github/workflows/linter.yml
vendored
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue