Skip to content

Commit

Permalink
pylint: Disable too-many-positional-arguments rule
Browse files Browse the repository at this point in the history
Similar to too-many-arguments.
  • Loading branch information
martinpitt committed Nov 6, 2024
1 parent d5e449b commit 762065e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ version_scheme = 'post-release'

[tool.pylint]
format = { max-line-length = 130 }
"messages control" = { disable = ["invalid-name", "too-many-arguments"] }
"messages control" = { disable = ["invalid-name", "too-many-arguments", "too-many-positional-arguments"] }
design = { max-args = 7, max-locals = 25, max-public-methods = 25 }

[tool.mypy]
Expand Down

0 comments on commit 762065e

Please sign in to comment.