Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -91,6 +91,7 @@ if st.button("Run"):
|
|
91 |
result2 = []
|
92 |
text = str(text)
|
93 |
for i in result:
|
|
|
94 |
i = i.replace(text, "")
|
95 |
result2.append(i)
|
96 |
st.write(result2)
|
|
|
91 |
result2 = []
|
92 |
text = str(text)
|
93 |
for i in result:
|
94 |
+
i = str(i)
|
95 |
i = i.replace(text, "")
|
96 |
result2.append(i)
|
97 |
st.write(result2)
|