Commit
·
77fd540
1
Parent(s):
52b62bc
Update app.py
Browse files
app.py
CHANGED
@@ -46,7 +46,7 @@ with tab1:
|
|
46 |
input_string = selected_example_po
|
47 |
|
48 |
if st.button("Transliterate Polish"):
|
49 |
-
|
50 |
output_string = polish_sentence_to_latin(input_string_polish)
|
51 |
st.subheader("Transliterated Output:")
|
52 |
st.write(output_string)
|
|
|
46 |
input_string = selected_example_po
|
47 |
|
48 |
if st.button("Transliterate Polish"):
|
49 |
+
if input_string_polish:
|
50 |
output_string = polish_sentence_to_latin(input_string_polish)
|
51 |
st.subheader("Transliterated Output:")
|
52 |
st.write(output_string)
|