Remove progress bar while searching routes

This commit is contained in:
Emmy D'Anello 2023-02-19 18:01:16 +01:00
parent 0f61b3bece
commit 089af1db75
Signed by: ynerant
GPG Key ID: 3A75C55819C8CF85
1 changed files with 1 additions and 1 deletions

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)