nateraw commited on
Commit
38f4ec4
Β·
1 Parent(s): c11aeae

Update 01_🏠_home.py

Browse files
Files changed (1) hide show
  1. 01_🏠_home.py +2 -1
01_🏠_home.py CHANGED
@@ -13,6 +13,8 @@ if 'form_fields' not in st.session_state:
13
  }
14
  st.session_state['progress'] = _progress
15
 
 
 
16
  st.sidebar.title("Test Multi-Page App")
17
  st.sidebar.markdown("""With streamlit 1.10.0, you can create [multipage apps](https://docs.streamlit.io/library/get-started/multipage-apps/create-a-multipage-app) right out of the box! πŸŽ‰
18
 
@@ -20,7 +22,6 @@ This simple demo uses that feature + Streamlit's [session state](https://docs.st
20
 
21
  This sort of workflow used to take a lot more effort, so it's cool to see it working a bit smoother now. πŸ€—
22
  """)
23
- st.sidebar.progress(st.session_state['progress']())
24
 
25
  "Here's the dict containing all the form field values for the current session:"
26
 
 
13
  }
14
  st.session_state['progress'] = _progress
15
 
16
+ st.sidebar.progress(st.session_state['progress']())
17
+
18
  st.sidebar.title("Test Multi-Page App")
19
  st.sidebar.markdown("""With streamlit 1.10.0, you can create [multipage apps](https://docs.streamlit.io/library/get-started/multipage-apps/create-a-multipage-app) right out of the box! πŸŽ‰
20
 
 
22
 
23
  This sort of workflow used to take a lot more effort, so it's cool to see it working a bit smoother now. πŸ€—
24
  """)
 
25
 
26
  "Here's the dict containing all the form field values for the current session:"
27