diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2016-11-08 19:21:16 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2016-11-08 19:21:16 -0500 |
commit | 3f57f725ea523907c3aaf313d190e72a87fcc54c (patch) | |
tree | 62fc480761a65a81ec6f485f0eba06697de212b2 /coverage/config.py | |
parent | eb522119345282edea88ebbf92ff781927d4c8d0 (diff) | |
download | python-coveragepy-3f57f725ea523907c3aaf313d190e72a87fcc54c.tar.gz |
No longer need this pragma
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 c7d6555..d6f5af0 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): # pylint: disable=arguments-differ + def read(self, filename): """Read a file name as UTF-8 configuration data.""" kwargs = {} if sys.version_info >= (3, 2): |