diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2022-12-31 23:33:31 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2022-12-31 23:34:12 -0500 |
commit | a3f3841b746a1789ff8f7fea0cc0715c45770996 (patch) | |
tree | 36850d9d8b3252db847e0fd874601f3e59ae9055 /coverage/types.py | |
parent | 09f9188e826f900198d638ee3c42b27bca29597d (diff) | |
download | python-coveragepy-git-a3f3841b746a1789ff8f7fea0cc0715c45770996.tar.gz |
mypy: add cmdline.py and test_cmdline.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 416b0b5d..79cf5d3a 100644 --- a/coverage/types.py +++ b/coverage/types.py @@ -25,7 +25,7 @@ TCovKwargs = Any ## Configuration # One value read from a config file. -TConfigValue = Optional[Union[bool, int, str, List[str]]] +TConfigValue = Optional[Union[bool, int, float, str, List[str]]] # An entire config section, mapping option names to values. TConfigSection = Dict[str, TConfigValue] |