Skip to content

Commit

Permalink
#20
Browse files Browse the repository at this point in the history
  • Loading branch information
jbutcher21 committed Jul 16, 2024
1 parent 6907473 commit 5c5c24e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion G2Audit.py
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ def audit(file_name1, file_name2, output_root, debug):
common_pair_count += same_cnt * (same_cnt - 1) / 2

# skip entity reporting if same
if new_pos_cnt + new_neg_cnt == 0:
if new_pos_cnt + new_neg_cnt == 0 and not any_missing:
common_entity_count += 1
logging.debug("skipping as result is same!")
continue
Expand Down

0 comments on commit 5c5c24e

Please sign in to comment.