From 089af1db75cf5f45bf895213280614a4e70b0f8b Mon Sep 17 00:00:00 2001 From: Emmy D'Anello Date: Sun, 19 Feb 2023 18:01:16 +0100 Subject: [PATCH] Remove progress bar while searching routes --- app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.py b/app.py index 7bc0848..14f7317 100644 --- a/app.py +++ b/app.py @@ -174,7 +174,7 @@ def find_routes(day: date, origin: str, destination: str | None): per_arr_explore = {} valid_routes = [] - for train in tqdm(trains): + for train in trains: if train.orig == origin: # Update from the TGVMax simulator queue_route(day, train.orig_iata, train.dest_iata)