pere commited on
Commit
08a570c
·
1 Parent(s): f2c649a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -2
app.py CHANGED
@@ -51,14 +51,13 @@ if unpunct:
51
  trans_chars = "'\",.:;-_*?/\n"
52
  trans_table = text.maketrans("", "", trans_chars)
53
  mytext = text.translate(trans_table)
54
- st.write("was here")
55
  else:
56
  st.write("and here")
57
 
58
  #if unspace:
59
  # mytext = text.replace(" ", "")
60
 
61
- textbox.text_area(f"",max_chars=1000, value=mytext)
62
 
63
  run = st.button('Run DeUnCaser')
64
 
 
51
  trans_chars = "'\",.:;-_*?/\n"
52
  trans_table = text.maketrans("", "", trans_chars)
53
  mytext = text.translate(trans_table)
54
+ textbox.text_area(f"",max_chars=1000, value=mytext)
55
  else:
56
  st.write("and here")
57
 
58
  #if unspace:
59
  # mytext = text.replace(" ", "")
60
 
 
61
 
62
  run = st.button('Run DeUnCaser')
63