nniehaus commited on
Commit
7cc4197
1 Parent(s): 3e65260

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -154,7 +154,7 @@ def InvestmentPropertyFinder(max_price, amenities, bedrooms, bathrooms, square_f
154
  st.title("Investment Property Finder in Breckenridge and Blue River, CO")
155
 
156
  max_price = st.text_input("Maximum Price", "Enter your maximum price for the property.")
157
- amenities = st.multiselect("Amenities", ["Close to Skiing", "Hot Tub", "Bus Route", "Parking"], "Select Amenities")
158
  bedrooms = st.selectbox("Bedrooms", ["1", "2", "3", "4", "5+"])
159
  bathrooms = st.selectbox("Bathrooms", ["1", "2", "3", "4", "5+"])
160
  square_footage = st.selectbox("Square Footage", ["<1000 sqft", "1000-2000 sqft", "2000-3000 sqft", "3000-4000 sqft", "4000+ sqft"])
 
154
  st.title("Investment Property Finder in Breckenridge and Blue River, CO")
155
 
156
  max_price = st.text_input("Maximum Price", "Enter your maximum price for the property.")
157
+ amenities = st.multiselect("Amenities", ["Close to Skiing", "Hot Tub", "Bus Route", "Parking"], default=[])
158
  bedrooms = st.selectbox("Bedrooms", ["1", "2", "3", "4", "5+"])
159
  bathrooms = st.selectbox("Bathrooms", ["1", "2", "3", "4", "5+"])
160
  square_footage = st.selectbox("Square Footage", ["<1000 sqft", "1000-2000 sqft", "2000-3000 sqft", "3000-4000 sqft", "4000+ sqft"])