Skip to content

Commit

Permalink
pylint: ignore too-many-positional-arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
rpreen committed Oct 2, 2024
1 parent 70885cc commit 673d454
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ enable = [
"useless-suppression",
]

disable = [
"too-many-positional-arguments",
]

[tool.pylint.design]
max-args = 5 # Maximum number of arguments for function / method (see R0913).
max-attributes = 7 # Maximum number of attributes for a class (see R0902).
Expand Down

0 comments on commit 673d454

Please sign in to comment.