We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 43e34cd commit 5f56fa3Copy full SHA for 5f56fa3
bigframes/core/reshape/merge.py
@@ -117,9 +117,9 @@ def _validate_left_right_on(
117
right_index: bool = False,
118
) -> tuple[list[str], list[str]]:
119
# Turn left_on and right_on to lists
120
- if left_on is not None and not isinstance(left_on, Sequence):
+ if left_on is not None and not isinstance(left_on, (tuple, list)):
121
left_on = [left_on]
122
- if right_on is not None and not isinstance(right_on, Sequence):
+ if right_on is not None and not isinstance(right_on, (tuple, list)):
123
right_on = [right_on]
124
125
if left_index and left.index.nlevels > 1:
0 commit comments