fix: wrong f-string inner string character

This commit is contained in:
Kat Inskip 2025-02-28 00:44:46 -08:00
parent 220de034a0
commit 2dba439f6b
Signed by: kat
GPG key ID: 465E64DECEA8CF0F

View file

@ -38,7 +38,7 @@ def request_posts(count: int, tags: list, config={}) -> list:
kv_print("Resolution", f"{post['width']}x{post['height']}")
kv_print("Tags", post["tags"])
kv_print("URL", post["file_url"])
post["show_url"] = f"https://konachan.com/post/show/{post["id"]}"
post["show_url"] = f"https://konachan.com/post/show/{post['id']}"
# Append the URL to the list
posts.append(post)
else: