File tree Expand file tree Collapse file tree 1 file changed +2
-7
lines changed Expand file tree Collapse file tree 1 file changed +2
-7
lines changed Original file line number Diff line number Diff line change @@ -566,13 +566,6 @@ def __init__(
566
566
indicator : bool = False ,
567
567
validate = None ,
568
568
):
569
-
570
- # if how == "right":
571
- # left, right = right, left
572
- # left_index, right_index = right_index, left_index
573
- # left_on, right_on = right_on, left_on
574
- # how = "left"
575
-
576
569
left = validate_operand (left )
577
570
right = validate_operand (right )
578
571
self .left = self .orig_left = left
@@ -1315,6 +1308,7 @@ def _get_join_indexers(
1315
1308
1316
1309
# bind `sort` arg. of _factorize_keys
1317
1310
fkeys = partial (_factorize_keys , sort = sort )
1311
+
1318
1312
# get left & right join labels and num. of levels at each location
1319
1313
mapped = (
1320
1314
_factorize_keys (left_keys [n ], right_keys [n ], sort = sort )
@@ -1330,6 +1324,7 @@ def _get_join_indexers(
1330
1324
# `count` is the num. of unique keys
1331
1325
# set(lkey) | set(rkey) == range(count)
1332
1326
lkey , rkey , count = fkeys (lkey , rkey )
1327
+
1333
1328
# preserve left frame order if how == 'left' and sort == False
1334
1329
kwargs = copy .copy (kwargs )
1335
1330
if _how == "left" :
You can’t perform that action at this time.
0 commit comments