pere commited on
Commit
cf5d419
·
1 Parent(s): 30db748

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -45,9 +45,9 @@ col1, col2, col3 = st.columns(3)
45
  placeholder = st.empty()
46
 
47
  with col1:
48
- st.button('Remove Punctation', on_click=uncase)
49
  with col2:
50
- st.button('Remove Casing', on_click=unpunct)
51
  with col3:
52
  st.button('Remove Spaces', on_click=unspace)
53
 
 
45
  placeholder = st.empty()
46
 
47
  with col1:
48
+ st.button('Remove Punctation', on_click=unpunct)
49
  with col2:
50
+ st.button('Remove Casing', on_click=uncase)
51
  with col3:
52
  st.button('Remove Spaces', on_click=unspace)
53