Skip to content

Commit 690c5a0

Browse files
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
1 parent 415bced commit 690c5a0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.pylintrc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,8 @@ disable=
6262
consider-using-set-comprehension,
6363
unnecessary-pass,
6464
useless-object-inheritance,
65-
arguments-renamed
66-
65+
arguments-renamed,
66+
too-many-positional-arguments
6767

6868
[BASIC]
6969
# Variable names can be 1 to 31 characters long, with lowercase and underscores

0 commit comments

Comments
 (0)