Was displaying text at the wrong place.
Browse files
app.py
CHANGED
|
@@ -215,12 +215,12 @@ with st.form(key='columns_in_form'):
|
|
| 215 |
|
| 216 |
# Get displayable digest and digest data
|
| 217 |
digestor.build_digest()
|
| 218 |
-
|
| 219 |
-
|
| 220 |
if len(digestor.text) == 0:
|
| 221 |
st.write("No text to return...huh.")
|
| 222 |
else:
|
| 223 |
st.write("Your digest is ready:\n")
|
|
|
|
| 224 |
st.write(f"""Text approximately {len(digestor.text.split(" ") )} words.""")
|
| 225 |
|
| 226 |
|
|
|
|
| 215 |
|
| 216 |
# Get displayable digest and digest data
|
| 217 |
digestor.build_digest()
|
| 218 |
+
|
|
|
|
| 219 |
if len(digestor.text) == 0:
|
| 220 |
st.write("No text to return...huh.")
|
| 221 |
else:
|
| 222 |
st.write("Your digest is ready:\n")
|
| 223 |
+
st.write(digestor.text)
|
| 224 |
st.write(f"""Text approximately {len(digestor.text.split(" ") )} words.""")
|
| 225 |
|
| 226 |
|