Skip to content

Commit de0d42e

Browse files
roypatShadowCurse
authored andcommitted
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 <[email protected]>
1 parent 48be9c9 commit de0d42e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/integration_tests/style/test_python.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def test_python_pylint():
3737
"fixme,too-many-instance-attributes,import-error,"
3838
"too-many-locals,too-many-arguments,consider-using-f-string,"
3939
"consider-using-with,implicit-str-concat,line-too-long,redefined-outer-name,"
40-
"broad-exception-raised,duplicate-code tests tools .buildkite/*.py"
40+
"broad-exception-raised,duplicate-code,too-many-positional-arguments tests tools .buildkite/*.py"
4141
)
4242
run(
4343
linter_cmd,

0 commit comments

Comments
 (0)