Skip to content

Commit

Permalink
dev: pylint: disable too-many-positional-arguments for now
Browse files Browse the repository at this point in the history
  • Loading branch information
ebirger committed Nov 21, 2024
1 parent 6649915 commit e495099
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dev/pylint.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
unsafe-load-any-extension=yes

[MESSAGES CONTROL]
disable=missing-docstring,invalid-name,broad-except,too-few-public-methods,no-member,attribute-defined-outside-init,import-error,too-many-arguments,too-many-locals,too-many-instance-attributes,bare-except,fixme,wrong-import-position,duplicate-code,too-many-branches,too-many-return-statements,global-statement,too-many-lines,super-with-arguments,raise-missing-from,too-many-public-methods,too-many-statements,unspecified-encoding
disable=missing-docstring,invalid-name,broad-except,too-few-public-methods,no-member,attribute-defined-outside-init,import-error,too-many-arguments,too-many-locals,too-many-instance-attributes,bare-except,fixme,wrong-import-position,duplicate-code,too-many-branches,too-many-return-statements,global-statement,too-many-lines,super-with-arguments,raise-missing-from,too-many-public-methods,too-many-statements,unspecified-encoding,too-many-positional-arguments

[REPORTS]
reports=no

0 comments on commit e495099

Please sign in to comment.