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:
parent
c44657377e
commit
689ca5cfe5
1 changed files with 1 additions and 0 deletions
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue