Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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 |
-
|
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 |
|