Skip to content
Snippets Groups Projects
Verified Commit bf8cda9f authored by Marco Aceti's avatar Marco Aceti
Browse files

Add tqdm to unfetched train iteration

parent e2260304
Branches
No related tags found
No related merge requests found
Pipeline #2639 passed
......@@ -67,7 +67,7 @@ def main() -> None:
f"Starting fetching {len(unfetched_trains)} previously unfetched trains"
)
_fetched_trains_delete_later: list[int] = list()
for unfetched_train_hash in unfetched_trains:
for unfetched_train_hash in tqdm(unfetched_trains):
train = unfetched_trains[unfetched_train_hash]
train.fetch()
if train._phantom or train.arrived():
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment