Manglik-R commited on
Commit
71cf475
1 Parent(s): 16074d5

Update app.py

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