Tihsrah-CD commited on
Commit
495bb3c
1 Parent(s): 7440285

one option added to credit_mix

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -37,7 +37,7 @@ def main():
37
  Amount_invested_monthly = st.number_input("Amount Invested Monthly")
38
  Monthly_Balance = st.number_input("Monthly_Balance")
39
 
40
- Credit_Mix = st.radio("Credit Mix", options=("Bad", "Good"), index=1)
41
 
42
  submit_button = st.button("Submit")
43
 
 
37
  Amount_invested_monthly = st.number_input("Amount Invested Monthly")
38
  Monthly_Balance = st.number_input("Monthly_Balance")
39
 
40
+ Credit_Mix = st.radio("Credit Mix", options=("Bad", "Good", "Standard"), index=1)
41
 
42
  submit_button = st.button("Submit")
43