Update app.py
Browse files
app.py
CHANGED
@@ -51,14 +51,13 @@ if unpunct:
|
|
51 |
trans_chars = "'\",.:;-_*?/\n"
|
52 |
trans_table = text.maketrans("", "", trans_chars)
|
53 |
mytext = text.translate(trans_table)
|
54 |
-
|
55 |
else:
|
56 |
st.write("and here")
|
57 |
|
58 |
#if unspace:
|
59 |
# mytext = text.replace(" ", "")
|
60 |
|
61 |
-
textbox.text_area(f"",max_chars=1000, value=mytext)
|
62 |
|
63 |
run = st.button('Run DeUnCaser')
|
64 |
|
|
|
51 |
trans_chars = "'\",.:;-_*?/\n"
|
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 |
|
58 |
#if unspace:
|
59 |
# mytext = text.replace(" ", "")
|
60 |
|
|
|
61 |
|
62 |
run = st.button('Run DeUnCaser')
|
63 |
|