sotosbarl commited on
Commit
fbf8335
·
1 Parent(s): 0b880ba

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -2
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)