File tree Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -307,6 +307,9 @@ max-locals=15
307
307
# Maximum number of parents for a class (see R0901).
308
308
max-parents =7
309
309
310
+ # Maximum number of positional arguments for function / method.
311
+ max-positional-arguments =5
312
+
310
313
# Maximum number of public methods for a class (see R0904).
311
314
max-public-methods =20
312
315
@@ -319,8 +322,6 @@ max-statements=50
319
322
# Minimum number of public methods for a class (see R0903).
320
323
min-public-methods =2
321
324
322
- # Minimum number of public methods for a class (see R0903).
323
- max-positional-arguments =5
324
325
325
326
[EXCEPTIONS]
326
327
Original file line number Diff line number Diff line change @@ -269,6 +269,9 @@ max-locals = 15
269
269
# Maximum number of parents for a class (see R0901).
270
270
max-parents = 7
271
271
272
+ # Maximum number of positional arguments for function / method.
273
+ max-positional-arguments = 5
274
+
272
275
# Maximum number of public methods for a class (see R0904).
273
276
max-public-methods = 20
274
277
@@ -281,9 +284,6 @@ max-statements = 50
281
284
# Minimum number of public methods for a class (see R0903).
282
285
min-public-methods = 2
283
286
284
- # Maximum number of positional arguments (see R0917).
285
- max-positional-arguments = 5
286
-
287
287
[tool .pylint .exceptions ]
288
288
# Exceptions that will emit a warning when caught.
289
289
overgeneral-exceptions = [" builtins.BaseException" , " builtins.Exception" ]
You can’t perform that action at this time.
0 commit comments