From 79170e7fa7d6a642fdab473b83332a3f067b50a5 Mon Sep 17 00:00:00 2001 From: Travis Weir Date: Sun, 15 Dec 2024 18:26:51 -0600 Subject: [PATCH 1/2] Allow more positional arguments --- pylintrc | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pylintrc b/pylintrc index 00c72328..28224aaf 100755 --- a/pylintrc +++ b/pylintrc @@ -465,7 +465,8 @@ max-statements=100 # Minimum number of public methods for a class (see R0903). min-public-methods=0 - +# Maximum number of positional arguments +max-positional-args=15 [IMPORTS] @@ -505,4 +506,4 @@ known-third-party=enchant # Exceptions that will emit a warning when being caught. Defaults to # "Exception" -overgeneral-exceptions=builtins.Exception \ No newline at end of file +overgeneral-exceptions=builtins.Exception From 940aeefeb77f97da5127a7a7b24c0eaeec8d1b75 Mon Sep 17 00:00:00 2001 From: Travis Weir Date: Sun, 15 Dec 2024 18:29:51 -0600 Subject: [PATCH 2/2] Google lied --- pylintrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pylintrc b/pylintrc index 28224aaf..efa2396a 100755 --- a/pylintrc +++ b/pylintrc @@ -466,7 +466,7 @@ max-statements=100 min-public-methods=0 # Maximum number of positional arguments -max-positional-args=15 +max-positional-arguments=15 [IMPORTS]