Update app.py
Browse files
app.py
CHANGED
@@ -52,6 +52,8 @@ if unpunct:
|
|
52 |
trans_table = text.maketrans("", "", trans_chars)
|
53 |
mytext = text.translate(trans_table)
|
54 |
textbox.text_area(f"",max_chars=1000, value=mytext)
|
|
|
|
|
55 |
else:
|
56 |
st.write("and here")
|
57 |
|
|
|
52 |
trans_table = text.maketrans("", "", trans_chars)
|
53 |
mytext = text.translate(trans_table)
|
54 |
textbox.text_area(f"",max_chars=1000, value=mytext)
|
55 |
+
st.write("inside unpunct")
|
56 |
+
|
57 |
else:
|
58 |
st.write("and here")
|
59 |
|