From d7ee73843e41fe56e0c97d27d7a559d61080dc5d Mon Sep 17 00:00:00 2001 From: Lee Miller Date: Sat, 14 Oct 2023 03:43:22 +0300 Subject: [PATCH] Adjust pylint design checker parameters: raise max-args to 8, add max-attributes with the same value. --- tox.ini | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 7d2f428..caeb4c6 100644 --- a/tox.ini +++ b/tox.ini @@ -41,4 +41,5 @@ ignore_errors = true [pylint.main] disable = invalid-name,consider-using-f-string,fixme -max-args = 7 +max-args = 8 +max-attributes = 8