green commited on
Commit
adb7bd7
1 Parent(s): 6ace3e9

removed redundant print from testing and added text length at bottom of digest

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -221,8 +221,8 @@ 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"{len(digestor.text)}")
225
 
226
- st.write(digestor.text)
227
 
228
  "st.session_state object:", st.session_state
 
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
 
228
  "st.session_state object:", st.session_state