fix(app): restore missing import re needed by qr_code route
All checks were successful
Deploy to K8s / deploy (push) Successful in 6s

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 <noreply@anthropic.com>
This commit is contained in:
2026-05-07 15:24:40 +02:00
parent b562ce3201
commit 2eec51bb34

1
app.py
View File

@@ -1,6 +1,7 @@
import sys import sys
from pathlib import Path from pathlib import Path
from datetime import datetime from datetime import datetime
import re
import time import time
import os import os
import io import io