Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
wschuell committed Nov 21, 2023
1 parent 9ff385b commit 6d806ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gis_fillers/getters/generic_getters.py
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ def parse_results(self, query_result):
to_resolve = [a for a in ans if a["geometry"] is None]
if len(to_resolve):
self.logger.info(
f"Resolving {len(to_resolve)} addresses out of {len(ans)}."
f"Resolving {len(set([r['location'] for r in to_resolve]))} addresses out of {len(ans)}."
)
temp_resolved = dict()
for a in to_resolve:
Expand Down

0 comments on commit 6d806ec

Please sign in to comment.