Skip to content

Commit

Permalink
chore: disable too-many-positional-arguments check in Pylint (#868)
Browse files Browse the repository at this point in the history
Pylint version 3.3.0 has added a new check too-many-positional-arguments, which is causing our linter checks to fail. This PR disables this check similar to other opinionated too-many-* checks.

Signed-off-by: behnazh-w <[email protected]>
  • Loading branch information
behnazh-w authored Sep 23, 2024
1 parent 2af40f2 commit 70bad94
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -226,6 +226,7 @@ disable = [
"too-many-return-statements",
"too-many-statements",
"too-many-function-args",
"too-many-positional-arguments",
"duplicate-code",
]

Expand Down

0 comments on commit 70bad94

Please sign in to comment.