jfataphd commited on
Commit
8715634
1 Parent(s): 7183901

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -33,6 +33,7 @@ query = query.lower()
33
 
34
  if query:
35
  bar = st.progress(0)
 
36
  st.caption(":LightSkyBlue[searching 40123 PubMed abstracts]")
37
  for i in range(10):
38
  bar.progress((i+1)*10)
@@ -115,7 +116,7 @@ if query:
115
  # # display the treemap in Streamlit
116
  st.pyplot(fig2)
117
 
118
- bar = st.progress(0)
119
 
120
 
121
 
 
33
 
34
  if query:
35
  bar = st.progress(0)
36
+ time.sleep(.2)
37
  st.caption(":LightSkyBlue[searching 40123 PubMed abstracts]")
38
  for i in range(10):
39
  bar.progress((i+1)*10)
 
116
  # # display the treemap in Streamlit
117
  st.pyplot(fig2)
118
 
119
+
120
 
121
 
122