Add "(beta)" to Static Visualization + small fixes

This commit is contained in:
Inga Kirschnick
2023-07-26 09:03:36 +02:00
parent 0627b27ec7
commit 27fe4a95e4
5 changed files with 11 additions and 12 deletions

View File

@ -66,7 +66,7 @@ def get_stopwords():
stopwords = {}
for language in languages:
stopwords[language] = nltk.corpus.stopwords.words(language)
stopwords['punctuation'] = list(punctuation) + ['', '|']
stopwords['punctuation'] = list(punctuation) + ['', '|', '', '', '']
stopwords['user_stopwords'] = []
response_data = stopwords
return response_data, 202