From 82dbc6b07636d8dacaf302cd72f019a25872a6c3 Mon Sep 17 00:00:00 2001 From: Hermes Agent Date: Wed, 15 Jul 2026 20:12:21 +0200 Subject: [PATCH] =?UTF-8?q?fix:=20f-string=20backslash-escape=20fixes=20f?= =?UTF-8?q?=C3=BCr=20Python=203.11=20Kompatibilit=C3=A4t?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.py b/app.py index f95bd5c..0761868 100644 --- a/app.py +++ b/app.py @@ -1962,7 +1962,7 @@ def submission_detail(sub_id: int):
- {"".join([f'' if row['status'] == 'published' else ''])} + {''.join([f'' if row['status'] == 'published' else ''])}