From 2eec51bb34409a413a2dca1b8c8fd4da00bb6e37 Mon Sep 17 00:00:00 2001 From: Jan Novak Date: Thu, 7 May 2026 15:24:40 +0200 Subject: [PATCH] fix(app): restore missing import re needed by qr_code route Accidentally removed when moving group_payments_by_person to views.py; re.match in qr_code caused a 500 on every QR request. Co-Authored-By: Claude Opus 4.7 --- app.py | 1 + 1 file changed, 1 insertion(+) diff --git a/app.py b/app.py index 9e89fc9..85cc440 100644 --- a/app.py +++ b/app.py @@ -1,6 +1,7 @@ import sys from pathlib import Path from datetime import datetime +import re import time import os import io