Soooma commited on
Commit
edc2216
1 Parent(s): e5a8eaf

fix a typo

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -3,7 +3,7 @@ from transformers import pipeline
3
 
4
  pipe = pipeline('sentiment-analysis')
5
 
6
- text = st.tetx_area('Enter some text!')
7
 
8
  if text:
9
  out = pipe(text)
 
3
 
4
  pipe = pipeline('sentiment-analysis')
5
 
6
+ text = st.text_area('Enter some text!')
7
 
8
  if text:
9
  out = pipe(text)