summaryrefslogtreecommitdiff
path: root/coverage
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2016-08-07 17:20:48 -0400
committerNed Batchelder <ned@nedbatchelder.com>2016-08-07 17:20:48 -0400
commitdf4daf71f1b8327abe2a83af474dd93501a35500 (patch)
treebec275ca05982c0551bf377d6f5dc52079ed5345 /coverage
parent1035b301586737bd44d6a8a9739e3cce53406622 (diff)
downloadpython-coveragepy-df4daf71f1b8327abe2a83af474dd93501a35500.tar.gz
Use latest pylint
Diffstat (limited to 'coverage')
-rw-r--r--coverage/config.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/coverage/config.py b/coverage/config.py
index d6f5af0..c7d6555 100644
--- a/coverage/config.py
+++ b/coverage/config.py
@@ -21,7 +21,7 @@ class HandyConfigParser(configparser.RawConfigParser):
configparser.RawConfigParser.__init__(self)
self.section_prefix = section_prefix
- def read(self, filename):
+ def read(self, filename): # pylint: disable=arguments-differ
"""Read a file name as UTF-8 configuration data."""
kwargs = {}
if sys.version_info >= (3, 2):