Skip to content
This repository was archived by the owner on May 17, 2024. It is now read-only.

Commit 4241471

Browse files
committed
format
1 parent a920ed2 commit 4241471

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

data_diff/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ def _jsons_equiv(a: str, b: str):
156156

157157
def diffs_are_equiv_jsons(diff: list, json_cols: dict):
158158
overriden_diff_cols = set()
159-
if (len(diff) != 2) or ({diff[0][0], diff[1][0]} != {'+', '-'}):
159+
if (len(diff) != 2) or ({diff[0][0], diff[1][0]} != {"+", "-"}):
160160
return False, overriden_diff_cols
161161
match = True
162162
for i, (col_a, col_b) in enumerate(safezip(diff[0][1][1:], diff[1][1][1:])): # index 0 is extra_columns first elem

0 commit comments

Comments
 (0)