fix: literal newline in string literal SyntaxError (#211)

This commit is contained in:
2026-04-21 11:26:26 +00:00
parent ef6a8d3baf
commit 17e03de983

View File

@@ -507,8 +507,7 @@ def format_markdown(report: PerfReport) -> str:
lines.append(f"- {icon} {b.name}{loc} — ~{b.duration_s:.1f}s — {b.recommendation}")
lines.append(f"")
return "
".join(lines)
return "\n".join(lines)
# ── Main ───────────────────────────────────────────────────────────