AdritRao commited on
Commit
5a2944b
1 Parent(s): 2cbcf15

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -0
app.py CHANGED
@@ -48,6 +48,8 @@ if uploaded_zip_file is not None:
48
  temp_dir = "temp_dicom_dir"
49
  os.makedirs(temp_dir, exist_ok=True)
50
 
 
 
51
  with zipfile.ZipFile(uploaded_zip_file, "r") as zip_ref:
52
  zip_ref.extractall(temp_dir)
53
 
 
48
  temp_dir = "temp_dicom_dir"
49
  os.makedirs(temp_dir, exist_ok=True)
50
 
51
+ st.write(f"Temporary directory path: {temp_dir}")
52
+
53
  with zipfile.ZipFile(uploaded_zip_file, "r") as zip_ref:
54
  zip_ref.extractall(temp_dir)
55