summaryrefslogtreecommitdiff
path: root/coverage/html.py
diff options
context:
space:
mode:
Diffstat (limited to 'coverage/html.py')
-rw-r--r--coverage/html.py6
1 files changed, 3 insertions, 3 deletions
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