Skip to content

Commit

Permalink
chore: suppress new pylint lint
Browse files Browse the repository at this point in the history
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 <roypat@amazon.co.uk>
  • Loading branch information
roypat committed Dec 10, 2024
1 parent 53a6ecd commit 0b117d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/integration_tests/style/test_python.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 0b117d3

Please sign in to comment.