summaryrefslogtreecommitdiff
path: root/coverage/html.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2022-12-08 07:07:16 -0500
committerNed Batchelder <ned@nedbatchelder.com>2022-12-08 07:40:23 -0500
commit71050957c68a7e1eaece7134be256535173e9b85 (patch)
treed1a3ddf4878599479f51a5d9af5058e5aa059e5d /coverage/html.py
parent4bca0478723434ab16582f94840cb38fa6878cd8 (diff)
downloadpython-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.py2
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)