Skip to content

Commit

Permalink
Fix lint issue (too-many-positional-arguments)
Browse files Browse the repository at this point in the history
  • Loading branch information
scarletcafe committed Oct 23, 2024
1 parent 9e4cd56 commit 658c7a9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,8 @@ disable=raw-checker-failed,
too-many-statements, # This is also dumb
too-many-branches, # Likewise
too-many-arguments, # Likewise
invalid-name # Sometimes short names are best
invalid-name, # Sometimes short names are best
too-many-positional-arguments # For some reason kwargs are considered positional now

# Enable the message, report, category or checker with the given id(s). You can
# either give multiple identifier separated by comma (,) or put this option
Expand Down

0 comments on commit 658c7a9

Please sign in to comment.