Skip to content

Commit

Permalink
Fixing pylint
Browse files Browse the repository at this point in the history
Having to disable too-many-positional-arguments check. While it's a good check it seems to be problematic to disable on a case-by-case basis.
  • Loading branch information
thirtytwobits committed Sep 29, 2024
1 parent 69930b1 commit 350ab07
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ max-attributes = 12
ignore-paths = .*/(jinja2|markupsafe)/.*
min-public-methods = 0
source-roots = src
disable = no-else-return,invalid-name
disable = no-else-return,invalid-name,too-many-positional-arguments


[pytest]
Expand Down

0 comments on commit 350ab07

Please sign in to comment.