diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2023-01-03 13:53:45 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2023-01-03 13:53:45 -0500 |
commit | 98301ed240a141592573c2ed239e006d42a26161 (patch) | |
tree | f774b5fa50df5b994c963a8be589aa8fc8754e18 /coverage/config.py | |
parent | 9d2e1b055cf7ed02eba725b86d476c24a718178d (diff) | |
download | python-coveragepy-git-98301ed240a141592573c2ed239e006d42a26161.tar.gz |
mypy: test_config.py, test_context.py
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 |