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:
@@ -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(
|
||||
|
||||
Reference in New Issue
Block a user