Nick021402 commited on
Commit
23812d0
·
verified ·
1 Parent(s): 120ea4f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -17,7 +17,7 @@ warnings.filterwarnings("ignore")
17
  # Download required NLTK data including punkt_tab
18
  try:
19
  nltk.data.find('tokenizers/punkt')
20
- nltk.data.find('tokenizers/punkt_tab')
21
  except LookupError:
22
  nltk.download(['punkt', 'punkt_tab'], quiet=True)
23
 
 
17
  # Download required NLTK data including punkt_tab
18
  try:
19
  nltk.data.find('tokenizers/punkt')
20
+ nltk.data.find('tokenizers/punkt_tab') # This is the missing one!
21
  except LookupError:
22
  nltk.download(['punkt', 'punkt_tab'], quiet=True)
23