fix import of stop words in language data

This commit is contained in:
Swier 2017-07-05 14:08:04 +02:00 committed by GitHub
parent f377c9c952
commit 29720150f9

View File

@ -4,7 +4,7 @@ from __future__ import unicode_literals
from .. import language_data as base
from ..language_data import update_exc, strings_to_exc
from .stop_words import STOP_WORDS
from .word_sets import STOP_WORDS, NUM_WORDS
STOP_WORDS = set(STOP_WORDS)