From 5cbf95034354f0e037e48d37f90aa3223da5e341 Mon Sep 17 00:00:00 2001 From: Gregory Thiemonge Date: Tue, 24 Sep 2024 10:04:36 +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: Icd52d87e130a38b3666ed7e350b592c7fe8bbc36 --- .pylintrc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.pylintrc b/.pylintrc index 5a059be..824b03d 100644 --- a/.pylintrc +++ b/.pylintrc @@ -50,7 +50,8 @@ disable= too-many-statements, multiple-statements, duplicate-except, - keyword-arg-before-vararg + keyword-arg-before-vararg, + too-many-positional-arguments [BASIC] # Variable names can be 1 to 31 characters long, with lowercase and underscores