diff options
-rw-r--r-- | fuzzycat/cluster.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fuzzycat/cluster.py b/fuzzycat/cluster.py index 4ccf8a9..fc922c8 100644 --- a/fuzzycat/cluster.py +++ b/fuzzycat/cluster.py @@ -53,7 +53,7 @@ class KeyDoc(BaseModel): get_ident_title = operator.itemgetter("ident", "title") ws_replacer = str.maketrans({"\t": " ", "\n": " "}) non_word_re = re.compile(r'[\W_]+', re.UNICODE) -printable_no_punct = string.digits + string.letters + string.whitespace +printable_no_punct = string.digits + string.ascii_letters + string.whitespace def slugify_string(s: str) -> str: |