summaryrefslogtreecommitdiff
path: root/coverage/types.py
diff options
context:
space:
mode:
Diffstat (limited to 'coverage/types.py')
-rw-r--r--coverage/types.py2
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."""