diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2023-01-04 07:03:10 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2023-01-04 07:03:10 -0500 |
commit | dbb94d570a2042409400c28ba3069dcb32a45159 (patch) | |
tree | 41caedd28b1d5cb99a76d8104566d309724eeeb7 /coverage/plugin.py | |
parent | faa62d3f3d90c15e72040479a9b237ca86bbeae1 (diff) | |
download | python-coveragepy-git-dbb94d570a2042409400c28ba3069dcb32a45159.tar.gz |
mypy: summary.py, test_summary.py, tests/coveragetest.py
Diffstat (limited to 'coverage/plugin.py')
-rw-r--r-- | coverage/plugin.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coverage/plugin.py b/coverage/plugin.py index ccc33337..da91aac4 100644 --- a/coverage/plugin.py +++ b/coverage/plugin.py @@ -496,7 +496,7 @@ class FileReporter(CoveragePluginBase): self, start: TLineNo, end: TLineNo, - executed_arcs: Optional[Set[TArc]]=None, # pylint: disable=unused-argument + executed_arcs: Optional[Iterable[TArc]]=None, # pylint: disable=unused-argument ) -> str: """Provide an English sentence describing a missing arc. |