pierreguillou commited on
Commit
ce63d82
1 Parent(s): 9dd6010

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -61,7 +61,7 @@ nlp.add_pipe('sentencizer')
61
 
62
  ## download stop words in Portuguese
63
  output = subprocess.run(["python", "stopwords.py"], capture_output=True, text=True)
64
- stop_words = eval(output.stdout)
65
 
66
 
67
  ## Part-of-Speech Tagging for Portuguese
 
61
 
62
  ## download stop words in Portuguese
63
  output = subprocess.run(["python", "stopwords.py"], capture_output=True, text=True)
64
+ stop_words = list(eval(output.stdout))
65
 
66
 
67
  ## Part-of-Speech Tagging for Portuguese