DebasishDhal99 commited on
Commit
d9ab0a3
1 Parent(s): 77fd540

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -43,7 +43,7 @@ with tab1:
43
  selected_example_po = st.selectbox('Choose an example as demo', ['None'] + polish_examples)
44
 
45
  if selected_example_po != 'None':
46
- input_string = selected_example_po
47
 
48
  if st.button("Transliterate Polish"):
49
  if input_string_polish:
@@ -60,7 +60,7 @@ with tab2:
60
  selected_example_hu = st.selectbox('Choose an example as demo', ['None'] + hungarian_examples)
61
 
62
  if selected_example_hu != 'None':
63
- input_string = selected_example_hu
64
 
65
  if st.button("Transliterate Hungarian"):
66
  if input_string_hungarian:
 
43
  selected_example_po = st.selectbox('Choose an example as demo', ['None'] + polish_examples)
44
 
45
  if selected_example_po != 'None':
46
+ input_string_polish = selected_example_po
47
 
48
  if st.button("Transliterate Polish"):
49
  if input_string_polish:
 
60
  selected_example_hu = st.selectbox('Choose an example as demo', ['None'] + hungarian_examples)
61
 
62
  if selected_example_hu != 'None':
63
+ input_string_hungarian = selected_example_hu
64
 
65
  if st.button("Transliterate Hungarian"):
66
  if input_string_hungarian: