KeshavRa commited on
Commit
541285a
·
verified ·
1 Parent(s): 4b61194

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +10 -10
app.py CHANGED
@@ -46,16 +46,6 @@ def reset_session_state():
46
  st.session_state.shelter_index = 0
47
  st.experimental_rerun()
48
 
49
- # Initialize session state
50
- if 'form_submitted' not in st.session_state:
51
- st.session_state.form_submitted = False
52
-
53
- if 'shelter_index' not in st.session_state:
54
- st.session_state.shelter_index = 0
55
-
56
- # Load the master database
57
- master_database = pd.read_csv("master_database.csv")
58
-
59
  # Page config
60
  st.set_page_config(
61
  page_title="Ex-stream-ly Cool App",
@@ -69,6 +59,16 @@ st.set_page_config(
69
  }
70
  )
71
 
 
 
 
 
 
 
 
 
 
 
72
  # Adding a title with an emoji
73
  st.title("📝 Information Form")
74
 
 
46
  st.session_state.shelter_index = 0
47
  st.experimental_rerun()
48
 
 
 
 
 
 
 
 
 
 
 
49
  # Page config
50
  st.set_page_config(
51
  page_title="Ex-stream-ly Cool App",
 
59
  }
60
  )
61
 
62
+ # Initialize session state
63
+ if 'form_submitted' not in st.session_state:
64
+ st.session_state.form_submitted = False
65
+
66
+ if 'shelter_index' not in st.session_state:
67
+ st.session_state.shelter_index = 0
68
+
69
+ # Load the master database
70
+ master_database = pd.read_csv("master_database.csv")
71
+
72
  # Adding a title with an emoji
73
  st.title("📝 Information Form")
74