From 690c5a0b206590fd3b92968e880235e7bf162dfd Mon Sep 17 00:00:00 2001 From: Fernando Royo Date: Tue, 24 Sep 2024 17:09: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: Ibbf31808a6b54c73bb354ada0e76de35b74aad12 --- .pylintrc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.pylintrc b/.pylintrc index f8e37d53..b4d4399e 100644 --- a/.pylintrc +++ b/.pylintrc @@ -62,8 +62,8 @@ disable= consider-using-set-comprehension, unnecessary-pass, useless-object-inheritance, - arguments-renamed - + arguments-renamed, + too-many-positional-arguments [BASIC] # Variable names can be 1 to 31 characters long, with lowercase and underscores