diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2022-12-08 07:07:16 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2022-12-08 07:40:23 -0500 |
commit | 71050957c68a7e1eaece7134be256535173e9b85 (patch) | |
tree | d1a3ddf4878599479f51a5d9af5058e5aa059e5d /coverage/html.py | |
parent | 4bca0478723434ab16582f94840cb38fa6878cd8 (diff) | |
download | python-coveragepy-git-nedbat/picklable.tar.gz |
refactor: don't hold data so that Analysis can be picklednedbat/picklable
Diffstat (limited to 'coverage/html.py')
-rw-r--r-- | coverage/html.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coverage/html.py b/coverage/html.py index 21b5189e..d2409b38 100644 --- a/coverage/html.py +++ b/coverage/html.py @@ -63,7 +63,7 @@ class HtmlDataGeneration: """Produce the data needed for one file's report.""" if self.has_arcs: missing_branch_arcs = analysis.missing_branch_arcs() - arcs_executed = analysis.arcs_executed() + arcs_executed = analysis.arcs_executed if self.config.show_contexts: contexts_by_lineno = analysis.data.contexts_by_lineno(analysis.filename) |