Manglik-R commited on
Commit
16074d5
1 Parent(s): 8076e73

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -38,5 +38,6 @@ st.write("Enter a sentence to analyze text's Tone:")
38
 
39
  user_input = st.text_input("")
40
  if user_input:
41
- result = upper(predict.predict(user_input))
 
42
  st.write(f"TONE : {result}")
 
38
 
39
  user_input = st.text_input("")
40
  if user_input:
41
+ result = predict.predict(user_input)
42
+ result.upper()
43
  st.write(f"TONE : {result}")