summaryrefslogtreecommitdiff
path: root/coverage/html.py
diff options
context:
space:
mode:
Diffstat (limited to 'coverage/html.py')
-rw-r--r--coverage/html.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/coverage/html.py b/coverage/html.py
index 0d6e6f9..7567c60 100644
--- a/coverage/html.py
+++ b/coverage/html.py
@@ -231,7 +231,8 @@ class HtmlReporter(Reporter):
else:
annotate_long = "%d missed branches: %s" % (
len(longs),
- ", ".join("%d) %s" % (num, ann_long) for num, ann_long in enumerate(longs, start=1)),
+ ", ".join("%d) %s" % (num, ann_long)
+ for num, ann_long in enumerate(longs, start=1)),
)
elif lineno in analysis.statements:
line_class.append(c_run)