fix(MAT-174): Python 3.11 backslash-in-fstring compat

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Christian Gick
2026-03-16 09:42:24 +02:00
parent 5e2a7715a1
commit 193c3ad329

View File

@@ -46,7 +46,8 @@ def format_listings(job_name: str, listings: list[dict]) -> str:
if url:
details.append(f"[View listing]({url})")
if details:
lines.append(f" {' \u00b7 '.join(details)}")
sep = " \u00b7 "
lines.append(f" {sep.join(details)}")
lines.append("")
lines.append(