Skip to content

Commit

Permalink
Disable pylint too-many-positional-arguments check
Browse files Browse the repository at this point in the history
It gives false positives
  • Loading branch information
drasmuss committed Sep 20, 2024
1 parent 69d9216 commit 1ecf3b1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions nengo_bones/templates/setup.cfg.template
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,7 @@ disable =
too-many-instance-attributes,
too-many-lines,
too-many-locals,
too-many-positional-arguments,
too-many-return-statements,
too-many-statements,
unexpected-keyword-arg,
Expand Down
2 changes: 1 addition & 1 deletion nengo_bones/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
tagged with the version.
"""

version_info = (24, 1, 22) # bones: ignore
version_info = (24, 9, 20) # bones: ignore

name = "nengo-bones"
dev = 0
Expand Down
1 change: 1 addition & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,7 @@ disable =
too-many-instance-attributes,
too-many-lines,
too-many-locals,
too-many-positional-arguments,
too-many-return-statements,
too-many-statements,
unexpected-keyword-arg,
Expand Down

0 comments on commit 1ecf3b1

Please sign in to comment.