diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2022-12-31 14:53:21 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2022-12-31 14:53:21 -0500 |
commit | bf73b37080c3c6deec969a555b45b70ee6727b13 (patch) | |
tree | 98f6c9c20d89afcc4d0c2396a155229fbd802290 /coverage/types.py | |
parent | ee1e4150529e55cd860fc3628b820d3a2ed471de (diff) | |
download | python-coveragepy-git-bf73b37080c3c6deec969a555b45b70ee6727b13.tar.gz |
mypy: check tests/goldtest.py, tests/test_html.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 6e69fc09..c9d05958 100644 --- a/coverage/types.py +++ b/coverage/types.py @@ -25,7 +25,7 @@ TCovKwargs = Any ## Configuration # One value read from a config file. -TConfigValue = Union[str, List[str]] +TConfigValue = Union[bool, str, List[str]] # An entire config section, mapping option names to values. TConfigSection = Dict[str, TConfigValue] |