Update app.py
Browse files
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=
|
49 |
with col2:
|
50 |
-
st.button('Remove Casing', on_click=
|
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 |
|