Skip to content

Commit

Permalink
scriptcheck.yml: fixated pylint version to avoid failures with newl…
Browse files Browse the repository at this point in the history
…y introduced checks (#6816)
  • Loading branch information
firewave committed Sep 21, 2024
1 parent bfa2df0 commit ca0e079
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/scriptcheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ jobs:
python -m pip install pip --upgrade
python -m pip install natsort
python -m pip install pexpect
python -m pip install pylint
python -m pip install 'pylint<=3.3.0'
python -m pip install unittest2
python -m pip install pytest
python -m pip install pygments
Expand Down
3 changes: 2 additions & 1 deletion .pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,8 @@ disable=
consider-using-join,
too-many-boolean-expressions,
useless-object-inheritance,
use-a-generator
use-a-generator,
too-many-positional-arguments
[REPORTS]
reports=no
[TYPECHECK]
Expand Down

0 comments on commit ca0e079

Please sign in to comment.