Add separation between cards
This commit is contained in:
parent
65358d1097
commit
96a33b3a6e
1 changed files with 2 additions and 0 deletions
|
@ -103,11 +103,13 @@ class find_duplicate_contacts:
|
||||||
for key, value in card1['content'].items():
|
for key, value in card1['content'].items():
|
||||||
print(f" {key}: {value}")
|
print(f" {key}: {value}")
|
||||||
print("")
|
print("")
|
||||||
|
print("-" * cols)
|
||||||
print("Card#2:")
|
print("Card#2:")
|
||||||
print(f" filename: {card2['filename']}")
|
print(f" filename: {card2['filename']}")
|
||||||
for key, value in card2['content'].items():
|
for key, value in card2['content'].items():
|
||||||
print(f" {key}: {value}")
|
print(f" {key}: {value}")
|
||||||
print("")
|
print("")
|
||||||
|
print("-" * cols)
|
||||||
print("Differences:")
|
print("Differences:")
|
||||||
ddiff = deepdiff.DeepDiff(card1['content'], card2['content'], ignore_order=True)
|
ddiff = deepdiff.DeepDiff(card1['content'], card2['content'], ignore_order=True)
|
||||||
pprint(ddiff)
|
pprint(ddiff)
|
||||||
|
|
Loading…
Reference in a new issue