Skip to content

Commit

Permalink
Ignore update timestamp in diff script
Browse files Browse the repository at this point in the history
  • Loading branch information
k-nut committed Aug 12, 2024
1 parent dffde33 commit 8535e71
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test_changes.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def sort_dict(data):


def get_clean_item(data):
return set({key: value for key, value in data.items() if value is not None})
return set({key: value for key, value in data.items() if value is not None and key != "update_timestamp"})


def compare_schools(new_school, old_school):
Expand Down

0 comments on commit 8535e71

Please sign in to comment.