Adjust pylint design checker parameters:

raise max-args to 8, add max-attributes with the same value.
This commit is contained in:
Lee Miller 2023-10-14 03:43:22 +03:00
parent 9bcaea12cf
commit d7ee73843e
Signed by untrusted user: lee.miller
GPG Key ID: 4F97A5EA88F4AB63
1 changed files with 2 additions and 1 deletions

View File

@ -41,4 +41,5 @@ ignore_errors = true
[pylint.main]
disable = invalid-name,consider-using-f-string,fixme
max-args = 7
max-args = 8
max-attributes = 8