We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a5f584a commit 280df83Copy full SHA for 280df83
1 file changed
utils/data_diff.py
@@ -91,6 +91,7 @@ def diff_obj(obj1: Any, obj2: Any, diff: dict, path: str = "") -> dict:
91
type(obj1) == type(obj2) == str
92
and obj2.endswith("Z")
93
and obj1.endswith("+00:00")
94
+ and obj2[:-1] == obj1[:-6]
95
):
96
return diff
97
0 commit comments