Closed ayyubibrahimi closed 2 months ago
@ayyubibrahimi what is the version of your Levenshtein
package?
0.25.1
The version that datamatch uses is 0.12. No wonder. But why did you upgrade to 0.25.1 though?
Hm. After some investigation, it doesn't look like any other packages depend on the Levenshtein
package locally anymore, and so the upgrade is no longer necessary.
Hey @pckhoi
Just tried to open a PR for this bug:
The fix that I implemented was changing from:
return jaro_winkler(unidecode(a), unidecode(b), self._prefix_weight)
To:
return jaro_winkler(unidecode(a), unidecode(b), prefix_weight=self._prefix_weight)