Update app.py
Browse files
app.py
CHANGED
@@ -51,7 +51,6 @@ if unpunct:
|
|
51 |
trans_chars = "'\",.:;-_*?/\n"
|
52 |
trans_table = text.maketrans("", "", trans_chars)
|
53 |
text = text.translate(trans_table)
|
54 |
-
st.write(mytext)
|
55 |
text = textbox.text_area(f"",max_chars=1000, value=text)
|
56 |
st.write("inside unpunct")
|
57 |
|
|
|
51 |
trans_chars = "'\",.:;-_*?/\n"
|
52 |
trans_table = text.maketrans("", "", trans_chars)
|
53 |
text = text.translate(trans_table)
|
|
|
54 |
text = textbox.text_area(f"",max_chars=1000, value=text)
|
55 |
st.write("inside unpunct")
|
56 |
|