fromcarlostocosta commited on
Commit
cd4458a
1 Parent(s): d15cbdd

Add Mr for men

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -29,7 +29,7 @@ sex = st.radio("Sex", ("Male", "Female"))
29
  name = st.text_input("Name", "")
30
 
31
  if sex == "Male":
32
- title = st.radio("Title", ("Doctor", "Master", "Reverend"))
33
  else:
34
  title = st.radio("Title", ("Doctor", "Master", "Miss", "Mrs", "Reverend"))
35
 
 
29
  name = st.text_input("Name", "")
30
 
31
  if sex == "Male":
32
+ title = st.radio("Title", ("Mr", "Doctor", "Master", "Reverend"))
33
  else:
34
  title = st.radio("Title", ("Doctor", "Master", "Miss", "Mrs", "Reverend"))
35