Skip to content

Commit 70bad94

Browse files
authored
chore: disable too-many-positional-arguments check in Pylint (#868)
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]>
1 parent 2af40f2 commit 70bad94

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -226,6 +226,7 @@ disable = [
226226
"too-many-return-statements",
227227
"too-many-statements",
228228
"too-many-function-args",
229+
"too-many-positional-arguments",
229230
"duplicate-code",
230231
]
231232

0 commit comments

Comments
 (0)