RobPruzan commited on
Commit
40fd1bd
·
1 Parent(s): 9a395b0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -439,8 +439,8 @@ def get_level(word):
439
  def vocab_level_inter(text):
440
  text = word_tokenize(text)
441
  stop_words = set(stopwords.words('english'))
442
- for i in string.punctuation:
443
- stop_words.add(i)
444
  interp = [('',0)]
445
  sum = 0
446
  total = 0
 
439
  def vocab_level_inter(text):
440
  text = word_tokenize(text)
441
  stop_words = set(stopwords.words('english'))
442
+ for i in string.punctuation:
443
+ stop_words.add(i)
444
  interp = [('',0)]
445
  sum = 0
446
  total = 0