pylint: increase max number of positional arguments

Change-Id: Id88270b3c3c1efb56f47def733c1e9c745f1ab18
Reviewed-on: https://forge.frm2.tum.de/review/c/secop/frappy/+/35282
Reviewed-by: Markus Zolliker <markus.zolliker@psi.ch>
Tested-by: Jenkins Automated Tests <pedersen+jenkins@frm2.tum.de>
Reviewed-by: Georg Brandl <g.brandl@fz-juelich.de>
This commit is contained in:
zolliker 2024-12-09 15:40:24 +01:00
parent 7ac10d2260
commit 8b0c4c78a9
2 changed files with 3 additions and 2 deletions

View File

@ -204,6 +204,9 @@ max-statements=150
# Maximum number of parents for a class (see R0901). # Maximum number of parents for a class (see R0901).
max-parents=20 max-parents=20
# Maximum number of positional arguments
max-positional-arguments=10
# Maximum number of attributes for a class (see R0902). # Maximum number of attributes for a class (see R0902).
max-attributes=50 max-attributes=50

View File

@ -22,8 +22,6 @@
# ***************************************************************************** # *****************************************************************************
"""general SECoP client""" """general SECoP client"""
# pylint: disable=too-many-positional-arguments
import json import json
import queue import queue
import re import re