From 762065e410d0cd11bd72de457fe8e4e97ff396b3 Mon Sep 17 00:00:00 2001 From: Martin Pitt Date: Wed, 6 Nov 2024 14:07:34 +0100 Subject: [PATCH] pylint: Disable too-many-positional-arguments rule Similar to too-many-arguments. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index f428cca..8745e93 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -43,7 +43,7 @@ version_scheme = 'post-release' [tool.pylint] format = { max-line-length = 130 } -"messages control" = { disable = ["invalid-name", "too-many-arguments"] } +"messages control" = { disable = ["invalid-name", "too-many-arguments", "too-many-positional-arguments"] } design = { max-args = 7, max-locals = 25, max-public-methods = 25 } [tool.mypy]