Add separation between cards

This commit is contained in:
Antonio J. Delgado 2022-06-13 22:12:12 +03:00
parent 65358d1097
commit 96a33b3a6e

View file

@ -103,11 +103,13 @@ class find_duplicate_contacts:
for key, value in card1['content'].items():
print(f" {key}: {value}")
print("")
print("-" * cols)
print("Card#2:")
print(f" filename: {card2['filename']}")
for key, value in card2['content'].items():
print(f" {key}: {value}")
print("")
print("-" * cols)
print("Differences:")
ddiff = deepdiff.DeepDiff(card1['content'], card2['content'], ignore_order=True)
pprint(ddiff)