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/types.py | |
parent | 9d2e1b055cf7ed02eba725b86d476c24a718178d (diff) | |
download | python-coveragepy-git-98301ed240a141592573c2ed239e006d42a26161.tar.gz |
mypy: test_config.py, test_context.py
Diffstat (limited to 'coverage/types.py')
-rw-r--r-- | coverage/types.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coverage/types.py b/coverage/types.py index ddfcdb81..54c1dfba 100644 --- a/coverage/types.py +++ b/coverage/types.py @@ -109,7 +109,7 @@ TCovKwargs = Any # One value read from a config file. TConfigValue = Optional[Union[bool, int, float, str, List[str]]] # An entire config section, mapping option names to values. -TConfigSection = Dict[str, TConfigValue] +TConfigSection = Mapping[str, TConfigValue] class TConfigurable(Protocol): """Something that can proxy to the coverage configuration settings.""" |