From 28d5c8c22cefd2dab01b3fd8fcb8981f048562e7 Mon Sep 17 00:00:00 2001 From: Jose Castillo Date: Tue, 24 Sep 2024 16:45:32 +0100 Subject: [PATCH] [pylint] Disable alert for too-many-positional-arguments Disable alert for too-many-positional-arguments Signed-off-by: Jose Castillo --- pylintrc | 1 + 1 file changed, 1 insertion(+) diff --git a/pylintrc b/pylintrc index f60dac55e..a3522df45 100644 --- a/pylintrc +++ b/pylintrc @@ -33,6 +33,7 @@ disable= R0913, # too-many-arguments R0914, # too-many-locals R0915, # too-many-statements + R0917, # too-many-positional-arguments R1702, # too-many-nested-blocks W0201, # attribute-defined-outside-init W0511, # fixme