Skip to content

Commit

Permalink
Fix pylint error "too many arguments"
Browse files Browse the repository at this point in the history
Use "--max-args 10" pylint option to prevent "too many arguments" error
  • Loading branch information
AliaksandrDziarkach committed Oct 4, 2023
1 parent db1c362 commit 4384709
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/indigo-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -676,7 +676,7 @@ jobs:
python setup.py bdist_wheel
cp dist/*.whl ${GITHUB_WORKSPACE}/dist/
- name: Run pylint
run: pylint bingo_elastic
run: pylint --max-args 10 bingo_elastic
working-directory: bingo/bingo-elastic/python
- name: Run tests
run: pytest tests
Expand Down

0 comments on commit 4384709

Please sign in to comment.