tnt306 commited on
Commit
9cdcb63
·
1 Parent(s): 787f98f
Files changed (1) hide show
  1. app.py +1 -0
app.py CHANGED
@@ -41,6 +41,7 @@ def predict():
41
 
42
  def download_patient(patient_id: str) -> str:
43
  my_file = Path(f"Patient{patient_id}.csv")
 
44
  if not my_file.is_file():
45
  raise Exception(f"[{my_file}] not found.")
46
  print(f"Downloading file [{str(my_file)}].")
 
41
 
42
  def download_patient(patient_id: str) -> str:
43
  my_file = Path(f"Patient{patient_id}.csv")
44
+ print(f"File to download [{str(my_file)}].")
45
  if not my_file.is_file():
46
  raise Exception(f"[{my_file}] not found.")
47
  print(f"Downloading file [{str(my_file)}].")