We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1677bbb commit 5bcfc26Copy full SHA for 5bcfc26
coverage/context.py
@@ -80,7 +80,7 @@ def mro(bases):
80
if f is func:
81
return base.__module__ + '.' + base.__name__ + "." + fname
82
for base in bases:
83
- qname = mro(base.__bases__)
+ qname = mro(base.__bases__) # pylint: disable=cell-var-from-loop
84
if qname is not None:
85
return qname
86
return None
pylintrc
@@ -90,6 +90,8 @@ disable=
90
# Messages that are noisy for now, eventually maybe we'll turn them on:
91
invalid-name,
92
protected-access,
93
+ unspecified-encoding,
94
+ consider-using-f-string,
95
duplicate-code,
96
cyclic-import
97
requirements/dev.pip
@@ -15,7 +15,7 @@ tox
15
16
# for linting.
17
greenlet==1.1.1
18
-pylint==2.9.6
+pylint==2.11.1
19
check-manifest==0.46
20
readme_renderer==29.0
21
0 commit comments