Skip to content
This repository has been archived by the owner on Aug 26, 2024. It is now read-only.

Commit

Permalink
Add punctuation characters back in so process does something.
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidCEllis committed Dec 18, 2017
1 parent 15ed268 commit 5717b92
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test_fuzzywuzzy_hypothesis.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from itertools import product
from functools import partial
from string import ascii_letters, digits
from string import ascii_letters, digits, punctuation

from hypothesis import given, assume, settings
import hypothesis.strategies as st
Expand All @@ -9,7 +9,7 @@
from fuzzywuzzy import fuzz, process, utils


HYPOTHESIS_ALPHABET = ascii_letters + digits
HYPOTHESIS_ALPHABET = ascii_letters + digits + punctuation


def scorers_processors():
Expand Down

0 comments on commit 5717b92

Please sign in to comment.