Skip to content

Commit 7f8dd68

Browse files
committed
Update pylint
1 parent 60f86b8 commit 7f8dd68

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

coverage/backunittest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ class TestCase(unittest.TestCase):
1818
`unittest` doesn't have them.
1919
2020
"""
21-
# pylint: disable=arguments-differ, deprecated-method
21+
# pylint: disable=signature-differs, deprecated-method
2222

2323
if not unittest_has('assertCountEqual'):
2424
def assertCountEqual(self, *args, **kwargs):

coverage/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ def get_section(self, section):
7272
d[opt] = self.get(section, opt)
7373
return d
7474

75-
def get(self, section, option, *args, **kwargs): # pylint: disable=arguments-differ
75+
def get(self, section, option, *args, **kwargs):
7676
"""Get a value, replacing environment variables also.
7777
7878
The arguments are the same as `RawConfigParser.get`, but in the found

coverage/multiproc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
class ProcessWithCoverage(OriginalProcess): # pylint: disable=abstract-method
2929
"""A replacement for multiprocess.Process that starts coverage."""
3030

31-
def _bootstrap(self, *args, **kwargs): # pylint: disable=arguments-differ
31+
def _bootstrap(self, *args, **kwargs): # pylint: disable=signature-differs
3232
"""Wrapper around _bootstrap to start coverage."""
3333
try:
3434
from coverage import Coverage # avoid circular import

requirements/dev.pip

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ pluggy==0.13.1
1414

1515
# for linting.
1616
greenlet==0.4.15
17-
pylint==2.4.4
17+
pylint==2.5.2
1818
check-manifest==0.40
1919
readme_renderer==24.0
2020

tests/test_phystokens.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -285,5 +285,5 @@ def test_cp1252(self):
285285
def test_double_coding_declaration(self):
286286
# Build this string in a weird way so that actual vim's won't try to
287287
# interpret it...
288-
uni = u"# -*- coding:utf-8 -*-\n# v" "im: fileencoding=utf-8\n"
288+
uni = u"# -*- coding:utf-8 -*-\n# v" + "im: fileencoding=utf-8\n"
289289
self.assert_compile_unicode(uni)

0 commit comments

Comments
 (0)