simonduerr commited on
Commit
f07faaf
·
verified ·
1 Parent(s): 573f2cc

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -14,7 +14,7 @@ MODEL_URL = "https://huggingface.co/boltz-community/boltz-1/resolve/main/boltz1.
14
  cache = "~/.boltz"
15
  ccd = cache / "ccd.pkl"
16
  if not ccd.exists():
17
- click.echo(
18
  f"Downloading the CCD dictionary to {ccd}. You may "
19
  "change the cache directory with the --cache flag."
20
  )
@@ -23,7 +23,7 @@ if not ccd.exists():
23
  # Download model
24
  model = cache / "boltz1.ckpt"
25
  if not model.exists():
26
- click.echo(
27
  f"Downloading the model weights to {model}. You may "
28
  "change the cache directory with the --cache flag."
29
  )
 
14
  cache = "~/.boltz"
15
  ccd = cache / "ccd.pkl"
16
  if not ccd.exists():
17
+ print(
18
  f"Downloading the CCD dictionary to {ccd}. You may "
19
  "change the cache directory with the --cache flag."
20
  )
 
23
  # Download model
24
  model = cache / "boltz1.ckpt"
25
  if not model.exists():
26
+ print(
27
  f"Downloading the model weights to {model}. You may "
28
  "change the cache directory with the --cache flag."
29
  )