Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion dedupe/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ def __init__(
def fingerprinter(self) -> blocking.Fingerprinter:
if self._fingerprinter is None:
raise ValueError(
"the record fingerprinter is not intialized, "
"the record fingerprinter is not initialized, "
"please run the train method"
)

Expand Down
2 changes: 1 addition & 1 deletion dedupe/clustering.py
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ def condensedDistance(

N = len(candidate_set)

# alternate form thanks to wolfram alpa
# alternate form thanks to Wolfram Alpha
index = row * (2 * N - row - 3) // 2 + col - 1

condensed_distances = numpy.ones(N * (N - 1) // 2, "f4")
Expand Down
2 changes: 1 addition & 1 deletion tests/test_predicates.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ def test_precise_latlong(self):
assert block_val == set()


class TestAlpaNumeric(unittest.TestCase):
class TestAlphaNumeric(unittest.TestCase):
def test_alphanumeric(self):
assert predicates.alphaNumericPredicate("a1") == {"a1"}
assert predicates.alphaNumericPredicate("1a") == {"1a"}
Expand Down