Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
lukasrothenberger committed Jul 9, 2024
1 parent 99fe805 commit a462e04
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions discopop_library/DependencyMetadata/compare_metadata.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def main():
if line.startswith("#"):
continue
test_results.add(line)

print("Total gold standard: ", len(gold_standard))
print("Total test results: ", len(test_results))
# identify number of matching results
Expand All @@ -40,7 +40,7 @@ def main():
missed = gold_standard.difference(test_results)
print("Missed: ", len(missed))

# identify number of additional results
# identify number of additional results
additional = test_results.difference(gold_standard)
print("Additional: ", len(additional))

Expand Down

0 comments on commit a462e04

Please sign in to comment.