Skip to content

Commit

Permalink
chore: disable R0917 (too many positional arguments) in ruff config
Browse files Browse the repository at this point in the history
- Added "R0917" to the list of disabled checks in pyproject.toml to prevent errors for methods with too many positional arguments.
  • Loading branch information
cpaillet committed Sep 27, 2024
1 parent bc610fd commit 1756436
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 @@ -33,6 +33,7 @@ disable = [
"R0914", # Too many local variables
"W0511", # TODO
"W0621", # redefined-outer-name
"R0917", # too many positional arguments
]

[tool.ruff]
Expand Down

0 comments on commit 1756436

Please sign in to comment.