diff options
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 69159d99..02d54716 100644 --- a/coverage/config.py +++ b/coverage/config.py @@ -73,7 +73,7 @@ class HandyConfigParser(configparser.ConfigParser): def get_section(self, section: str) -> TConfigSection: """Get the contents of a section, as a dictionary.""" - d: TConfigSection = {} + d: Dict[str, TConfigValue] = {} for opt in self.options(section): d[opt] = self.get(section, opt) return d |