Skip to content

Commit 5f56fa3

Browse files
committed
fix tests
1 parent 43e34cd commit 5f56fa3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

bigframes/core/reshape/merge.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,9 +117,9 @@ def _validate_left_right_on(
117117
right_index: bool = False,
118118
) -> tuple[list[str], list[str]]:
119119
# Turn left_on and right_on to lists
120-
if left_on is not None and not isinstance(left_on, Sequence):
120+
if left_on is not None and not isinstance(left_on, (tuple, list)):
121121
left_on = [left_on]
122-
if right_on is not None and not isinstance(right_on, Sequence):
122+
if right_on is not None and not isinstance(right_on, (tuple, list)):
123123
right_on = [right_on]
124124

125125
if left_index and left.index.nlevels > 1:

0 commit comments

Comments
 (0)