nniehaus commited on
Commit
7e9b859
·
verified ·
1 Parent(s): 48de8d7

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -13,8 +13,8 @@ investment_experience = st.selectbox("Your Investment Experience", ["Beginner",
13
  investment_goal = st.text_input("Investment Goal", placeholder="e.g., Retirement, Buying a Home, Education")
14
 
15
  st.subheader("Financial Information")
16
- annual_income = st.number_input("Annual Income", min_value=10000, max_value=1000000, step=1000, format="$%i")
17
- investment_amount = st.number_input("Amount Available for Investment", min_value=1000, max_value=500000, step=100, format="$%i")
18
  risk_tolerance = st.selectbox("Risk Tolerance", ["Low", "Medium", "High"])
19
 
20
  if st.button('Generate My Investment Strategy'):
 
13
  investment_goal = st.text_input("Investment Goal", placeholder="e.g., Retirement, Buying a Home, Education")
14
 
15
  st.subheader("Financial Information")
16
+ annual_income = st.number_input("Annual Income", min_value=10000, max_value=1000000, step=1000) # Removed format argument
17
+ investment_amount = st.number_input("Amount Available for Investment", min_value=1000, max_value=500000, step=100) # Removed format argument
18
  risk_tolerance = st.selectbox("Risk Tolerance", ["Low", "Medium", "High"])
19
 
20
  if st.button('Generate My Investment Strategy'):