Update app.py
Browse files
app.py
CHANGED
@@ -43,9 +43,9 @@ option = st.sidebar.selectbox(
|
|
43 |
|
44 |
placeholder = st.empty()
|
45 |
|
46 |
-
sidebar.button('Remove Punctation', on_click=unpunct)
|
47 |
-
sidebar.button('Remove Casing', on_click=uncase)
|
48 |
-
sidebar.button('Remove Spaces', on_click=unspace)
|
49 |
|
50 |
with placeholder:
|
51 |
text = st.text_area(f"Input text",max_chars=1000,height=140,key="textbox")
|
|
|
43 |
|
44 |
placeholder = st.empty()
|
45 |
|
46 |
+
st.sidebar.button('Remove Punctation', on_click=unpunct)
|
47 |
+
st.sidebar.button('Remove Casing', on_click=uncase)
|
48 |
+
st.sidebar.button('Remove Spaces', on_click=unspace)
|
49 |
|
50 |
with placeholder:
|
51 |
text = st.text_area(f"Input text",max_chars=1000,height=140,key="textbox")
|