diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2016-08-07 17:20:48 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2016-08-07 17:20:48 -0400 |
commit | 93325dfb9d388c1a01f0e71b130afcabab74881c (patch) | |
tree | 2c898e1a83917bedd3d9218f26ef9b2caf29c830 /coverage/config.py | |
parent | b3d626c3936d11c189b8e810ccb93ceaa019b156 (diff) | |
download | python-coveragepy-git-93325dfb9d388c1a01f0e71b130afcabab74881c.tar.gz |
Use latest pylint
Diffstat (limited to 'coverage/config.py')
-rw-r--r-- | coverage/config.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coverage/config.py b/coverage/config.py index d6f5af0a..c7d6555c 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): |