Update app.py
Browse files
app.py
CHANGED
@@ -35,7 +35,6 @@ def classify(text):
|
|
35 |
|
36 |
text = st.text_input('Enter some text:') # Input field for new text
|
37 |
if text:
|
38 |
-
output1 = classify(text)
|
39 |
-
output2 = classify(text)
|
40 |
st.text(output1)
|
41 |
st.text(output2)
|
|
|
35 |
|
36 |
text = st.text_input('Enter some text:') # Input field for new text
|
37 |
if text:
|
38 |
+
output1, output2 = classify(text)
|
|
|
39 |
st.text(output1)
|
40 |
st.text(output2)
|