more f-string usage (#7671)

This commit is contained in:
Mike Fährmann
2025-08-03 10:18:42 +02:00
parent b47c9b6e91
commit 55977e2be3
5 changed files with 34 additions and 34 deletions

View File

@@ -853,7 +853,7 @@ class UrlJob(Job):
stdout_write(url + "\n")
if "_fallback" in kwdict:
for url in kwdict["_fallback"]:
stdout_write("| " + url + "\n")
stdout_write(f"| {url}\n")
def handle_queue(self, url, kwdict):
if cls := kwdict.get("_extractor"):