Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -27,7 +27,7 @@ if st.button("Traducir"):
|
|
27 |
time.sleep(2)
|
28 |
if user_input:
|
29 |
textotraducido = traductor(user_input, max_length=500)[0]["textotraducido"]
|
30 |
-
st.success("Texto traducido: "
|
31 |
else:
|
32 |
st.warning("Ingrese un texto")
|
33 |
|
|
|
27 |
time.sleep(2)
|
28 |
if user_input:
|
29 |
textotraducido = traductor(user_input, max_length=500)[0]["textotraducido"]
|
30 |
+
st.success("Texto traducido: ", textotraducido)
|
31 |
else:
|
32 |
st.warning("Ingrese un texto")
|
33 |
|