diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2016-02-15 12:30:31 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2016-02-15 12:30:31 -0500 |
commit | 1f0e50cdf60d38aa73e9eac8d3fdaf71061749ff (patch) | |
tree | 2671c278c997b476102e64fb64c76a749a2b0f12 /coverage/html.py | |
parent | d77a0119140a42a848e21f3f13005bf63c7cad53 (diff) | |
download | python-coveragepy-1f0e50cdf60d38aa73e9eac8d3fdaf71061749ff.tar.gz |
Pick off some lint
Diffstat (limited to 'coverage/html.py')
-rw-r--r-- | coverage/html.py | 3 |
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) |