From 1756436dd09a7acab8598eacfe3f6dcb5760c059 Mon Sep 17 00:00:00 2001 From: Cedric Paillet Date: Fri, 27 Sep 2024 13:47:36 +0200 Subject: [PATCH] chore: disable R0917 (too many positional arguments) in ruff config - Added "R0917" to the list of disabled checks in pyproject.toml to prevent errors for methods with too many positional arguments. --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 6ca7bd1..9c6b09b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -33,6 +33,7 @@ disable = [ "R0914", # Too many local variables "W0511", # TODO "W0621", # redefined-outer-name + "R0917", # too many positional arguments ] [tool.ruff]