From 9981a920436e864d55abc8944c28ab8bd069ce3e Mon Sep 17 00:00:00 2001 From: averevki Date: Tue, 24 Sep 2024 10:58:21 +0200 Subject: [PATCH] Disable too-many-positional arguments from pylint Signed-off-by: averevki --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 3b7f3927..9a10b407 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -70,6 +70,7 @@ disable = [ "fixme", # ignore TODOs "redefined-outer-name", "too-many-arguments", + "too-many-positional-arguments", "too-few-public-methods"] [tool.pylint.BASIC]