From 9f29701ae3a233446cd5bd2b32236b6a856b268d Mon Sep 17 00:00:00 2001 From: Alexander Piskun Date: Thu, 26 Sep 2024 22:06:38 +0300 Subject: [PATCH] pylint: ignore `too-many-positional-arguments` Signed-off-by: Alexander Piskun --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index d11776c8..cc527b96 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -207,6 +207,7 @@ messages_control.disable = [ "too-few-public-methods", "too-many-public-methods", "too-many-instance-attributes", + "too-many-positional-arguments", ] [tool.pytest.ini_options]