Update stop_words.py

I have deleted line 1 to 5 and the statement print(STOP_WORDS)
This commit is contained in:
Shumi 2021-02-11 21:30:34 +02:00 committed by GitHub
parent 0d57e84b7b
commit 4e514f1ea8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 6 deletions

View File

@ -1,8 +1,3 @@
coding: utf8
from __future__ import unicode_literals
# Stop words # Stop words
STOP_WORDS = set(""" STOP_WORDS = set("""
ke gareng ga selekanyo tlhwatlhwa yo mongwe se ke gareng ga selekanyo tlhwatlhwa yo mongwe se
@ -21,4 +16,3 @@ bonala e tshwanang bogolo tsenya tsweetswee karolo
sepe tlhalosa dirwa robedi robongwe lesomenngwe gaisa sepe tlhalosa dirwa robedi robongwe lesomenngwe gaisa
tlhano lesometlhano botlalo lekgolo tlhano lesometlhano botlalo lekgolo
""".split()) """.split())
print(STOP_WORDS)