Update app.py
Browse files
app.py
CHANGED
@@ -56,7 +56,7 @@ with col1:
|
|
56 |
with input1:
|
57 |
choose_language(i)
|
58 |
with input2:
|
59 |
-
sentence = st.text_input(f"Enter sentence for input {i} (with <mask>):", key=f'text_input_{i}')
|
60 |
if sentence:
|
61 |
input_sentences[f'{language.lower()}_{i+1}'] = (language.lower(), sentence)
|
62 |
|
|
|
56 |
with input1:
|
57 |
choose_language(i)
|
58 |
with input2:
|
59 |
+
sentence = st.text_input(f"Enter sentence for input {i+1} (with <mask>):", key=f'text_input_{i}')
|
60 |
if sentence:
|
61 |
input_sentences[f'{language.lower()}_{i+1}'] = (language.lower(), sentence)
|
62 |
|