From 2dba439f6bac00f92bd56cb5eb0285b3d60de7ee Mon Sep 17 00:00:00 2001 From: Kat Inskip Date: Fri, 28 Feb 2025 00:44:46 -0800 Subject: [PATCH] fix: wrong f-string inner string character --- konawall/sources/konachan.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/konawall/sources/konachan.py b/konawall/sources/konachan.py index b105323..13fcdc8 100644 --- a/konawall/sources/konachan.py +++ b/konawall/sources/konachan.py @@ -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: