From f77693d90a615ae6e77825653bf647567c9305e8 Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Thu, 18 Mar 2021 07:54:31 -0400 Subject: style: correct two recent lint faux pas --- coverage/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'coverage/config.py') 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): -- cgit v1.2.1