pere commited on
Commit
cf69017
1 Parent(s): 4b8a19d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -46,11 +46,11 @@ col1, col2, col3 = st.columns([1,1,1])
46
  placeholder = st.empty()
47
 
48
  with col1:
49
- st.button('Remove punctation', on_click=uncase)
50
  with col2:
51
- st.button('Uncase ', on_click=unpunct)
52
  with col3:
53
- st.button('Remove spaces', on_click=unspace)
54
 
55
  with placeholder:
56
  text = st.text_area(f"",max_chars=1000,height=140,key="textbox")
 
46
  placeholder = st.empty()
47
 
48
  with col1:
49
+ st.button('Remove Punctation', on_click=uncase)
50
  with col2:
51
+ st.button('Remove Casing', on_click=unpunct)
52
  with col3:
53
+ st.button('Remove Spaces', on_click=unspace)
54
 
55
  with placeholder:
56
  text = st.text_area(f"",max_chars=1000,height=140,key="textbox")