Puree commited on
Commit
ea733c0
1 Parent(s): 9f5208e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -20,7 +20,7 @@ unique_Month = unique_values["Month"]
20
  def main():
21
  st.title("Water usage in town predict")
22
  with st.form("questionaire"):
23
- Land_use = st.slider("Land use",options = unique_LANDUSE_TYPE)
24
  User = st.selectbox("Gender",options = unique_USER)
25
  Month = st.selectbox("Hypertension",options = unique_Month)
26
  pipe_diam = st.slider("pipe diam",min_value=0, max_value=10)
 
20
  def main():
21
  st.title("Water usage in town predict")
22
  with st.form("questionaire"):
23
+ Land_use = st.selectbox("Land use",options = unique_LANDUSE_TYPE)
24
  User = st.selectbox("Gender",options = unique_USER)
25
  Month = st.selectbox("Hypertension",options = unique_Month)
26
  pipe_diam = st.slider("pipe diam",min_value=0, max_value=10)