pylint and autopep8 all python files

This commit is contained in:
Allen Winter
2022-07-08 17:34:42 -04:00
parent 4afc6b62b2
commit 6e5cfd70d1
17 changed files with 258 additions and 187 deletions

View File

@@ -139,6 +139,7 @@ disable=print-statement,
deprecated-sys-function,
exception-escape,
comprehension-escape,
consider-using-f-string,
R0801,I1101,E0401
# Enable the message, report, category or checker with the given id(s). You can
@@ -268,7 +269,7 @@ inlinevar-naming-style=any
#inlinevar-rgx=
# Naming style matching correct method names.
method-naming-style=camelCase
method-naming-style=any
# Regular expression matching correct method names. Overrides method-naming-
# style.
@@ -516,7 +517,7 @@ valid-metaclass-classmethod-first-arg=cls
[DESIGN]
# Maximum number of arguments for function / method.
max-args=5
max-args=10
# Maximum number of attributes for a class (see R0902).
max-attributes=7