Add more quotes in strip_quotes

This commit is contained in:
simon987 2021-11-16 11:39:10 -05:00
parent 1ce795a759
commit 3677815d57
2 changed files with 2 additions and 2 deletions

View File

@ -97,7 +97,7 @@ def preprocess(text, lowercase=False, clean_html=False, remove_punctuation=False
words = text.split()
if strip_quotes:
words = filter(lambda w: w.strip("\"'"), words)
words = filter(lambda w: w.strip("\"'"), words)
if bigrams:
words = _transform_bigram(nltk.bigrams(chain(words, ("*",))), bigrams)

View File

@ -2,7 +2,7 @@ from setuptools import setup
setup(
name="hexlib",
version="1.67",
version="1.68",
description="Misc utility methods",
author="simon987",
author_email="me@simon987.net",