Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -40,7 +40,7 @@ if submit:
|
|
40 |
|
41 |
st.markdown("### Edited sentence:")
|
42 |
c_text = " "
|
43 |
-
for x in out_text.split(" "):
|
44 |
if x in input_text.lower().split(" "):
|
45 |
c_text = c_text + x + " "
|
46 |
else:
|
|
|
40 |
|
41 |
st.markdown("### Edited sentence:")
|
42 |
c_text = " "
|
43 |
+
for x in out_text.lower().split(" "):
|
44 |
if x in input_text.lower().split(" "):
|
45 |
c_text = c_text + x + " "
|
46 |
else:
|