Update app.py
Browse files
app.py
CHANGED
@@ -1,5 +1,8 @@
|
|
1 |
import streamlit as st
|
2 |
|
|
|
|
|
|
|
3 |
# --- SHARED ON ALL PAGES ---
|
4 |
#st.logo(image=":material/medical_information:")
|
5 |
#st.logo(image="images/medical_information_24dp_1F1F1F_FILL0_wght400_GRAD0_opsz24.png")
|
|
|
1 |
import streamlit as st
|
2 |
|
3 |
+
for k, v in st.session_state.items():
|
4 |
+
st.session_state[k] = v
|
5 |
+
|
6 |
# --- SHARED ON ALL PAGES ---
|
7 |
#st.logo(image=":material/medical_information:")
|
8 |
#st.logo(image="images/medical_information_24dp_1F1F1F_FILL0_wght400_GRAD0_opsz24.png")
|