From 73835865ae035d8eb4bd6ebda3b5c00be7cc9bc5 Mon Sep 17 00:00:00 2001 From: i Date: Tue, 10 Feb 2026 14:03:18 +0100 Subject: [PATCH] dont stop when reserve success --- main.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/main.py b/main.py index c224c84..e08636f 100644 --- a/main.py +++ b/main.py @@ -54,7 +54,10 @@ def main(): resource_id = seat_id reservation_success = booking.reserve(resource_id, start, end) if reservation_success: - return True + print("✅ Reservation success for %d" % resource_id) + # return True + else: + print("❌ Reservation failure for %d" % resource_id) # if RESOURCE_ID: # resource_id = RESOURCE_ID