Skip to content

Commit 5bcfc26

Browse files
committed
test: update pylint
1 parent 1677bbb commit 5bcfc26

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

Diff for: coverage/context.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ def mro(bases):
8080
if f is func:
8181
return base.__module__ + '.' + base.__name__ + "." + fname
8282
for base in bases:
83-
qname = mro(base.__bases__)
83+
qname = mro(base.__bases__) # pylint: disable=cell-var-from-loop
8484
if qname is not None:
8585
return qname
8686
return None

Diff for: pylintrc

+2
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,8 @@ disable=
9090
# Messages that are noisy for now, eventually maybe we'll turn them on:
9191
invalid-name,
9292
protected-access,
93+
unspecified-encoding,
94+
consider-using-f-string,
9395
duplicate-code,
9496
cyclic-import
9597

Diff for: requirements/dev.pip

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ tox
1515

1616
# for linting.
1717
greenlet==1.1.1
18-
pylint==2.9.6
18+
pylint==2.11.1
1919
check-manifest==0.46
2020
readme_renderer==29.0
2121

0 commit comments

Comments
 (0)