pere commited on
Commit
824eba1
·
1 Parent(s): 53b8890

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -46,9 +46,9 @@ col1, col2, col3 = st.columns([1,1,1])
46
  placeholder = st.empty()
47
 
48
  with col1:
49
- st.button('Uncase', on_click=uncase)
50
  with col2:
51
- st.button('Remove punctation', on_click=unpunct)
52
  with col3:
53
  st.button('Remove spaces', on_click=unspace)
54
 
 
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