1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
|
[MASTER]
jobs=0
[REPORTS]
score=no
[MESSAGES CONTROL]
disable=
abstract-method,
arguments-differ,
arguments-renamed,
attribute-defined-outside-init,
broad-except,
cell-var-from-loop,
consider-using-f-string,
consider-using-with,
cyclic-import,
deprecated-decorator,
duplicate-code,
duplicate-value,
exec-used,
fixme,
import-error,
import-outside-toplevel,
inconsistent-mro,
inconsistent-return-statements,
invalid-name,
invalid-unary-operand-type,
line-too-long,
method-cache-max-size-none,
missing-class-docstring,
missing-function-docstring,
missing-module-docstring,
multiple-imports,
multiple-statements,
no-else-break,
no-else-continue,
no-else-raise,
no-else-return,
no-member,
no-name-in-module,
no-self-argument,
non-parent-init-called,
not-an-iterable,
not-callable,
pointless-string-statement,
protected-access,
raise-missing-from,
redeclared-assigned-name,
redefined-argument-from-local,
redefined-builtin,
redefined-outer-name,
simplifiable-if-statement,
subprocess-run-check,
super-init-not-called,
too-few-public-methods,
too-many-ancestors,
too-many-arguments,
too-many-boolean-expressions,
too-many-branches,
too-many-instance-attributes,
too-many-lines,
too-many-locals,
too-many-nested-blocks,
too-many-public-methods,
too-many-return-statements,
too-many-statements,
typevar-name-incorrect-variance,
undefined-loop-variable,
unidiomatic-typecheck,
unnecessary-dict-index-lookup,
unnecessary-lambda-assignment,
unsubscriptable-object,
unused-argument,
unused-variable,
use-implicit-booleaness-not-comparison,
used-before-assignment,
useless-return,
useless-super-delegation,
wrong-import-order,
wrong-import-position,
|