Skip to content

Commit 1c55d3b

Browse files
committed
fix gendiff.search_of_the_diff.py
1 parent af6acd0 commit 1c55d3b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gendiff/search_of_the_diff.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@ def search_diff(value1, value2):
1414
result[f'+ {key}'] = value2.get(key)
1515
elif key not in value1 and key in value2:
1616
result[f'+ {key}'] = value2.get(key)
17-
return json.dumps(result)
17+
return json.dumps(result, indent=4)

0 commit comments

Comments
 (0)