summaryrefslogtreecommitdiff
path: root/coverage/config.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2021-03-18 07:54:31 -0400
committerNed Batchelder <ned@nedbatchelder.com>2021-03-18 07:54:31 -0400
commitf77693d90a615ae6e77825653bf647567c9305e8 (patch)
treedce404f7447dc0db8d50b4afacfec901f736ab85 /coverage/config.py
parent1307eaa36ecfa908c13df2c3dbad0a0dc67027b4 (diff)
downloadpython-coveragepy-git-f77693d90a615ae6e77825653bf647567c9305e8.tar.gz
style: correct two recent lint faux pas
Diffstat (limited to 'coverage/config.py')
-rw-r--r--coverage/config.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/coverage/config.py b/coverage/config.py
index e519fc62..a48251fb 100644
--- a/coverage/config.py
+++ b/coverage/config.py
@@ -35,7 +35,7 @@ class HandyConfigParser(configparser.RawConfigParser):
if our_file:
self.section_prefixes.append("")
- def read(self, filenames):
+ def read(self, filenames, encoding_unused=None):
"""Read a file name as UTF-8 configuration data."""
kwargs = {}
if env.PYVERSION >= (3, 2):