From 3c6f10f189eecb0020120819c89ec658085f4953 Mon Sep 17 00:00:00 2001 From: Gregory Thiemonge Date: Tue, 24 Sep 2024 10:01:16 +0200 Subject: [PATCH] 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 --- .pylintrc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.pylintrc b/.pylintrc index 6a63317920..fae8b7b34b 100644 --- a/.pylintrc +++ b/.pylintrc @@ -56,7 +56,8 @@ disable= keyword-arg-before-vararg, useless-object-inheritance, arguments-renamed, - consider-using-enumerate + consider-using-enumerate, + too-many-positional-arguments [BASIC] # Variable names can be 1 to 31 characters long, with lowercase and underscores