Lint/pylint: disable too-many-positional-arguments check

The new version of Pylint reports this issue in too many places. It is
unlikely that we would change all occurrences of it just to make
Pylint happy. Disable the check.

Signed-off-by: Tomáš Hozza <thozza@redhat.com>
This commit is contained in:
Tomáš Hozza 2024-11-19 13:42:56 +01:00 committed by Michael Vogt
parent c44657377e
commit 689ca5cfe5

View file

@ -6,6 +6,7 @@ disable=missing-docstring,
superfluous-parens,
too-many-locals,
too-many-arguments,
too-many-positional-arguments,
consider-using-with,
consider-using-from-import,
line-too-long,