Changed single quotes to triple in f-string at end
Browse files
app.py
CHANGED
@@ -221,7 +221,7 @@ with st.form(key='columns_in_form'):
|
|
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 |
|
227 |
|
|
|
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 |
|
227 |
|