pere commited on
Commit
50f9081
·
1 Parent(s): 6c87eb0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -40,11 +40,11 @@ option = st.sidebar.selectbox(
40
 
41
  col1, col2, col3 = st.columns([1,1,1])
42
  with col1:
43
- uncase=st.button('Remove Casing')
44
  with col2:
45
- unpunct=st.button('Remove Punctation')
46
  with col3:
47
- unspace=st.button('Remove Spaces')
48
 
49
  if uncase:
50
  mytext = text.lower()
 
40
 
41
  col1, col2, col3 = st.columns([1,1,1])
42
  with col1:
43
+ uncase=st.checkbox('Remove Casing')
44
  with col2:
45
+ unpunct=st.checkbox('Remove Punctation')
46
  with col3:
47
+ unspace=st.checkbox('Remove Spaces')
48
 
49
  if uncase:
50
  mytext = text.lower()