Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -18,7 +18,7 @@ st.write(
|
|
18 |
|
19 |
language = st.selectbox("Language", ["English"])
|
20 |
input_text = st.text_area("Input your text (Max 1000 characters)", height=250, max_chars=1000)
|
21 |
-
input_text = st.text_area(pyperclip.paste(), height=250, max_chars=1000)
|
22 |
|
23 |
if st.button("Submit") and len(input_text) > 0:
|
24 |
|
|
|
18 |
|
19 |
language = st.selectbox("Language", ["English"])
|
20 |
input_text = st.text_area("Input your text (Max 1000 characters)", height=250, max_chars=1000)
|
21 |
+
#input_text = st.text_area(pyperclip.paste(), height=250, max_chars=1000)
|
22 |
|
23 |
if st.button("Submit") and len(input_text) > 0:
|
24 |
|