Add more single quotes

This commit is contained in:
simon987 2021-11-16 15:32:24 -05:00
parent 55fd4a66d2
commit 90d434ec73
2 changed files with 2 additions and 2 deletions

View File

@ -56,7 +56,7 @@ def _transform_trigram(ngram_seq, ngrams):
yield ngram[0]
SINGLE_QUOTES = ("", "`")
SINGLE_QUOTES = ("", "`", "")
SINGLE_QUOTE_TRANS = str.maketrans("".join(SINGLE_QUOTES), "".join(repeat("'", len(SINGLE_QUOTES))))
DASHES = ("", "", "", "")

View File

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