From 4478cb4c868ab2b738a5a2ea4facc03df5812d95 Mon Sep 17 00:00:00 2001 From: Patrick Roy Date: Tue, 10 Dec 2024 14:13:09 +0000 Subject: [PATCH] chore: suppress new pylint lint With the devctr's python dependencies update, we pulled in a new pylint version, which has a new `too-many-positional-arguments` lint. Fixing this would be a significant refactor, so just suppress it, as it seems low-value. Signed-off-by: Patrick Roy --- tests/integration_tests/style/test_python.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration_tests/style/test_python.py b/tests/integration_tests/style/test_python.py index 6a836dc4287..b04b93dace2 100644 --- a/tests/integration_tests/style/test_python.py +++ b/tests/integration_tests/style/test_python.py @@ -37,7 +37,7 @@ def test_python_pylint(): "fixme,too-many-instance-attributes,import-error," "too-many-locals,too-many-arguments,consider-using-f-string," "consider-using-with,implicit-str-concat,line-too-long,redefined-outer-name," - "broad-exception-raised,duplicate-code tests tools .buildkite/*.py" + "broad-exception-raised,duplicate-code,too-many-positional-arguments tests tools .buildkite/*.py" ) run( linter_cmd,