Fix pep8 with pylint 3.3.0
pylint 3.3.0 comes with a new checker: - too-many-positional-arguments / R0917 Disable this checker: it limits the functions to 5 positional arguments and requires to use the '*' delimiter to split the positional and optional arguments. Change-Id: Icd52d87e130a38b3666ed7e350b592c7fe8bbc36
This commit is contained in:
parent
aa833df58c
commit
5cbf950343
@ -50,7 +50,8 @@ disable=
|
|||||||
too-many-statements,
|
too-many-statements,
|
||||||
multiple-statements,
|
multiple-statements,
|
||||||
duplicate-except,
|
duplicate-except,
|
||||||
keyword-arg-before-vararg
|
keyword-arg-before-vararg,
|
||||||
|
too-many-positional-arguments
|
||||||
|
|
||||||
[BASIC]
|
[BASIC]
|
||||||
# Variable names can be 1 to 31 characters long, with lowercase and underscores
|
# Variable names can be 1 to 31 characters long, with lowercase and underscores
|
||||||
|
Loading…
Reference in New Issue
Block a user