From 1f23eb453f6c9469719c2183d2be186b0b283609 Mon Sep 17 00:00:00 2001 From: Julian Smith Date: Sat, 21 Sep 2024 10:29:16 +0100 Subject: [PATCH] tests/test_pylint.py: disable R0917 too-many-positional-arguments checks. --- tests/test_pylint.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/test_pylint.py b/tests/test_pylint.py index ea099dbbb..ffed9944b 100644 --- a/tests/test_pylint.py +++ b/tests/test_pylint.py @@ -82,6 +82,7 @@ def test_pylint(): W0719: Raising too general exception: Exception (broad-exception-raised) C3001: Lambda expression assigned to a variable. Define a function using the "def" keyword instead. (unnecessary-lambda-assignment) R0801: Similar lines in 2 files + R0917: Too many positional arguments (7/5) (too-many-positional-arguments) ''' ) ignores_list = list()