Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -8,6 +8,11 @@ def get_market_submarket(df, google_ola):
|
|
| 8 |
|
| 9 |
def main():
|
| 10 |
st.set_page_config(initial_sidebar_state="collapsed")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 11 |
|
| 12 |
def display_list_and_input():
|
| 13 |
option_choice = st.selectbox("Select a property address", df_options)
|
|
|
|
| 8 |
|
| 9 |
def main():
|
| 10 |
st.set_page_config(initial_sidebar_state="collapsed")
|
| 11 |
+
|
| 12 |
+
st.session_state['user_select_value'] = ""
|
| 13 |
+
st.session_state['year_buit'] = 1999
|
| 14 |
+
st.session_state['submarket_val'] = ""
|
| 15 |
+
st.session_state['market_val'] = ""
|
| 16 |
|
| 17 |
def display_list_and_input():
|
| 18 |
option_choice = st.selectbox("Select a property address", df_options)
|