Skip to content

Commit 658c7a9

Browse files
committed
Fix lint issue (too-many-positional-arguments)
1 parent 9e4cd56 commit 658c7a9

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.pylintrc

+2-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,8 @@ disable=raw-checker-failed,
7575
too-many-statements, # This is also dumb
7676
too-many-branches, # Likewise
7777
too-many-arguments, # Likewise
78-
invalid-name # Sometimes short names are best
78+
invalid-name, # Sometimes short names are best
79+
too-many-positional-arguments # For some reason kwargs are considered positional now
7980

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

0 commit comments

Comments
 (0)