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: I8ebe754fb683030ab8e806542c4e63406bc031c9
This commit is contained in:
parent
eff69261f4
commit
3c6f10f189
@ -56,7 +56,8 @@ disable=
|
|||||||
keyword-arg-before-vararg,
|
keyword-arg-before-vararg,
|
||||||
useless-object-inheritance,
|
useless-object-inheritance,
|
||||||
arguments-renamed,
|
arguments-renamed,
|
||||||
consider-using-enumerate
|
consider-using-enumerate,
|
||||||
|
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