Skip to content

Commit

Permalink
Merge branch 'develop' of https://github.com/nltk/nltk into feature/b…
Browse files Browse the repository at this point in the history
…uild_index_warnings
  • Loading branch information
tomaarsen committed Dec 10, 2021
2 parents bbf456c + abbe86b commit e4b3028
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions nltk/corpus/__init__.py
Expand Up @@ -359,17 +359,17 @@
wordnet = LazyCorpusLoader(
"wordnet",
WordNetCorpusReader,
LazyCorpusLoader("omw", CorpusReader, r".*/wn-data-.*\.tab", encoding="utf8"),
LazyCorpusLoader("omw-1.4", CorpusReader, r".*/wn-data-.*\.tab", encoding="utf8"),
)
wordnet31 = LazyCorpusLoader(
"wordnet31",
WordNetCorpusReader,
LazyCorpusLoader("omw", CorpusReader, r".*/wn-data-.*\.tab", encoding="utf8"),
LazyCorpusLoader("omw-1.4", CorpusReader, r".*/wn-data-.*\.tab", encoding="utf8"),
)
wordnet2021 = LazyCorpusLoader(
"wordnet2021",
WordNetCorpusReader,
LazyCorpusLoader("omw", CorpusReader, r".*/wn-data-.*\.tab", encoding="utf8"),
LazyCorpusLoader("omw-1.4", CorpusReader, r".*/wn-data-.*\.tab", encoding="utf8"),
)
wordnet_ic = LazyCorpusLoader("wordnet_ic", WordNetICCorpusReader, r".*\.dat")
words = LazyCorpusLoader(
Expand Down

0 comments on commit e4b3028

Please sign in to comment.