Skip to content

Commit

Permalink
Merge pull request #1134 from dedupeio/lmores-fix/console_label
Browse files Browse the repository at this point in the history
Lmores fix/console label
  • Loading branch information
fgregg committed Jan 17, 2023
2 parents 580745b + 2204a40 commit 723ccc3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dedupe/convenience.py
Expand Up @@ -141,7 +141,7 @@ def console_label(deduper: dedupe.api.ActiveMatching) -> None: # pragma: no cov
labeled: list[LabeledPair] = []

n_match = len(deduper.training_pairs["match"])
n_distinct = len(deduper.training_pairs["match"])
n_distinct = len(deduper.training_pairs["distinct"])

while not finished:
if use_previous:
Expand Down

0 comments on commit 723ccc3

Please sign in to comment.