diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2022-12-31 17:17:12 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2022-12-31 20:39:09 -0500 |
commit | 5a72a1eb736516759201b223463f69f00979818e (patch) | |
tree | 280e5b16147f8a6b792dba2a96c4a21f7894e4c5 /coverage/parser.py | |
parent | 0bcb2cb8344eb4cec24455fa421ece185eec0fac (diff) | |
download | python-coveragepy-git-5a72a1eb736516759201b223463f69f00979818e.tar.gz |
mypy: control.py is checked
Diffstat (limited to 'coverage/parser.py')
-rw-r--r-- | coverage/parser.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coverage/parser.py b/coverage/parser.py index 3512fdc3..2a8d0a50 100644 --- a/coverage/parser.py +++ b/coverage/parser.py @@ -43,7 +43,7 @@ class PythonParser: """ Source can be provided as `text`, the text itself, or `filename`, from which the text will be read. Excluded lines are those that match - `exclude`, a regex. + `exclude`, a regex string. """ assert text or filename, "PythonParser needs either text or filename" |