From df94e822ae87f35f0ccfd2b022c28d6c9dd07ea6 Mon Sep 17 00:00:00 2001 From: Edward Betts Date: Sat, 4 Apr 2026 10:43:31 +0100 Subject: [PATCH] Try 45 minute min connection time. --- app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.py b/app.py index cdfa4ef..eff2f76 100644 --- a/app.py +++ b/app.py @@ -33,7 +33,7 @@ def index(): return render_template('index.html', destinations=DESTINATIONS, today=today) -VALID_MIN_CONNECTIONS = {50, 60, 70, 80, 90, 100, 110, 120} +VALID_MIN_CONNECTIONS = {45, 50, 60, 70, 80, 90, 100, 110, 120} VALID_MAX_CONNECTIONS = {60, 70, 80, 90, 100, 110, 120, 130, 140, 150, 160, 170, 180}