From 420c01394a31415d7a7cbb80be196bcfca48482c Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Sun, 1 May 2022 08:16:06 -0400 Subject: style: parens should indent the same as their opening line --- coverage/html.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'coverage/html.py') diff --git a/coverage/html.py b/coverage/html.py index 342d2ad1..e18a30a1 100644 --- a/coverage/html.py +++ b/coverage/html.py @@ -188,7 +188,7 @@ class HtmlReporter: 'mis': 'mis show_mis', 'par': 'par run show_par', 'run': 'run', - } + }, } self.pyfile_html_source = read_data("pyfile.html") self.source_tmpl = Templite(self.pyfile_html_source, self.template_globals) @@ -292,7 +292,7 @@ class HtmlReporter: ldata.annotate = ",   ".join( f"{ldata.number} ↛ {d}" for d in ldata.short_annotations - ) + ) else: ldata.annotate = None @@ -306,7 +306,7 @@ class HtmlReporter: ", ".join( f"{num:d}) {ann_long}" for num, ann_long in enumerate(longs, start=1) - ), + ), ) else: ldata.annotate_long = None -- cgit v1.2.1