Skip to content

Commit

Permalink
Merge pull request #65 from mindsdb/fix/nltk_output
Browse files Browse the repository at this point in the history
suppress nltk output when downloading punkt
  • Loading branch information
paxcema committed Apr 5, 2024
2 parents fef7cd9 + 4586025 commit f50744d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion type_infer/rule_based/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
try:
nltk.data.find('tokenizers/punkt')
except LookupError:
nltk.download('punkt')
nltk.download('punkt', quiet=True)

try:
from nltk.corpus import stopwords
Expand Down

0 comments on commit f50744d

Please sign in to comment.