From 20033c71012732c181b3997e454f42edc46d44fd Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Mon, 15 Feb 2016 12:30:31 -0500 Subject: Pick off some lint --- coverage/html.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'coverage/html.py') diff --git a/coverage/html.py b/coverage/html.py index 0d6e6f96..7567c605 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) -- cgit v1.2.1