diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2020-05-19 12:49:34 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2020-05-19 12:49:34 -0400 |
commit | 7f8dd68dd6da360374603f3a352c07713a3b082d (patch) | |
tree | b7284006f6682f237ae5fbaf490c9e43d035dfcb /coverage | |
parent | 60f86b82ffe6ff40889f24ae8d25e338da2a92b7 (diff) | |
download | python-coveragepy-git-7f8dd68dd6da360374603f3a352c07713a3b082d.tar.gz |
Update pylint
Diffstat (limited to 'coverage')
-rw-r--r-- | coverage/backunittest.py | 2 | ||||
-rw-r--r-- | coverage/config.py | 2 | ||||
-rw-r--r-- | coverage/multiproc.py | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/coverage/backunittest.py b/coverage/backunittest.py index 078f48cc..123bb2a1 100644 --- a/coverage/backunittest.py +++ b/coverage/backunittest.py @@ -18,7 +18,7 @@ class TestCase(unittest.TestCase): `unittest` doesn't have them. """ - # pylint: disable=arguments-differ, deprecated-method + # pylint: disable=signature-differs, deprecated-method if not unittest_has('assertCountEqual'): def assertCountEqual(self, *args, **kwargs): diff --git a/coverage/config.py b/coverage/config.py index 7876052b..d16c9d6e 100644 --- a/coverage/config.py +++ b/coverage/config.py @@ -72,7 +72,7 @@ class HandyConfigParser(configparser.RawConfigParser): d[opt] = self.get(section, opt) return d - def get(self, section, option, *args, **kwargs): # pylint: disable=arguments-differ + def get(self, section, option, *args, **kwargs): """Get a value, replacing environment variables also. The arguments are the same as `RawConfigParser.get`, but in the found diff --git a/coverage/multiproc.py b/coverage/multiproc.py index 2931b3be..0afcb0c9 100644 --- a/coverage/multiproc.py +++ b/coverage/multiproc.py @@ -28,7 +28,7 @@ original_bootstrap = OriginalProcess._bootstrap class ProcessWithCoverage(OriginalProcess): # pylint: disable=abstract-method """A replacement for multiprocess.Process that starts coverage.""" - def _bootstrap(self, *args, **kwargs): # pylint: disable=arguments-differ + def _bootstrap(self, *args, **kwargs): # pylint: disable=signature-differs """Wrapper around _bootstrap to start coverage.""" try: from coverage import Coverage # avoid circular import |