Remove progress bar while searching routes

This commit is contained in:
2023-02-19 18:01:16 +01:00
parent 0f61b3bece
commit 089af1db75

2
app.py
View File

@ -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)