Skip to content

Commit

Permalink
update datasets message
Browse files Browse the repository at this point in the history
  • Loading branch information
lobis committed Dec 8, 2023
1 parent dab6920 commit bdcf708
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/geant4_python_application/datasets.py
Original file line number Diff line number Diff line change
Expand Up @@ -173,10 +173,10 @@ def install_datasets(force: bool = False, show_progress: bool = True):
os.makedirs(data_dir, exist_ok=True)
if show_progress:
print(
f"Geant4 datasets (< 2GB) will be installed to temporary directory {data_dir}. This may take a while but only needs to be done once."
)
print(
f"""The following Geant4 datasets will be installed: {", ".join([f"{dataset.name}@{dataset.version}" for dataset in datasets_to_download])}"""
f"""
Geant4 datasets (<2GB) will be installed to temporary directory {data_dir}
This may take a few minutes but only needs to be done once.
The following Geant4 datasets will be installed: {", ".join([f"{dataset.name}@v{dataset.version}" for dataset in datasets_to_download])}"""
)

with tqdm(
Expand Down

0 comments on commit bdcf708

Please sign in to comment.