green commited on
Commit
2845154
1 Parent(s): adb7bd7

Changed single quotes to triple in f-string at end

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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