Remove progress bar while searching routes
This commit is contained in:
parent
0f61b3bece
commit
089af1db75
2
app.py
2
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)
|
||||
|
|
Loading…
Reference in New Issue