Spaces:
Sleeping
Sleeping
Debug 17
Browse files
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)}].")
|