We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6a47f2f commit 50da8c8Copy full SHA for 50da8c8
src/pytest_html/basereport.py
@@ -356,8 +356,10 @@ def _process_outcome(report):
356
357
358
def _process_links(links):
359
- a_tag = ('<a href="{content}" class="col-links__extra {format_type}" target="_blank" rel="noopener noreferrer">'
360
- '{name}</a>')
+ a_tag = (
+ '<a href="{content}" class="col-links__extra {format_type}" target="_blank" rel="noopener noreferrer">'
361
+ "{name}</a>"
362
+ )
363
return "".join([a_tag.format_map(link) for link in links])
364
365
0 commit comments