lily-hust commited on
Commit
f2faa7f
1 Parent(s): f20dc7f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -1,4 +1,5 @@
1
  import streamlit as st
 
2
 
3
  import cv2
4
  import pandas
@@ -47,6 +48,6 @@ if uploaded_files:
47
 
48
  if st.button("Clear uploaded files"):
49
  state["file_uploader_key"] += 1
50
- #uploaded_files = None
51
  st.experimental_rerun()
52
 
 
1
  import streamlit as st
2
+ import time
3
 
4
  import cv2
5
  import pandas
 
48
 
49
  if st.button("Clear uploaded files"):
50
  state["file_uploader_key"] += 1
51
+ time.sleep(.5)
52
  st.experimental_rerun()
53