File tree Expand file tree Collapse file tree 3 files changed +4
-2
lines changed Expand file tree Collapse file tree 3 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -80,7 +80,7 @@ def mro(bases):
80
80
if f is func :
81
81
return base .__module__ + '.' + base .__name__ + "." + fname
82
82
for base in bases :
83
- qname = mro (base .__bases__ )
83
+ qname = mro (base .__bases__ ) # pylint: disable=cell-var-from-loop
84
84
if qname is not None :
85
85
return qname
86
86
return None
Original file line number Diff line number Diff line change @@ -90,6 +90,8 @@ disable=
90
90
# Messages that are noisy for now, eventually maybe we'll turn them on:
91
91
invalid-name,
92
92
protected-access,
93
+ unspecified-encoding,
94
+ consider-using-f-string,
93
95
duplicate-code,
94
96
cyclic-import
95
97
Original file line number Diff line number Diff line change 15
15
16
16
# for linting.
17
17
greenlet==1.1.1
18
- pylint==2.9.6
18
+ pylint==2.11.1
19
19
check-manifest==0.46
20
20
readme_renderer==29.0
21
21
You can’t perform that action at this time.
0 commit comments