Closed fgregg closed 1 year ago
Base: 73.66% // Head: 73.84% // Increases project coverage by +0.18%
:tada:
Coverage data is based on head (
b9b1768
) compared to base (f0503e0
). Patch coverage: 80.00% of modified lines in pull request are covered.
:umbrella: View full report at Codecov.
:loudspeaker: Do you have feedback about the report comment? Let us know in this issue.
It's not quite done, because it is possible for the two datasets in RecordLinkage and Gazetteer code to have different id types, and i haven't handled that possibility yet.
actually, because of the way that the distance functions interact with numpy, the id types do need to be homogenous.
When I was using dedupe in another project, i noticed that we had, in many places, said we expected record ids to be a mixture of integers or strings. In reality, we need the record ids to either be purely integers or purely strings. This fixes that typing.
It's not quite done, because it is possible for the two datasets in RecordLinkage and Gazetteer code to have different id types, and i haven't handled that possibility yet.
closes #1136