Skip to content

Commit 298dac3

Browse files
authored
CLN: consistent use of rval within left_join_indexer_unique (minor cleanup) (#48356)
1 parent a1e4987 commit 298dac3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/_libs/join.pyx

+1-1
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,7 @@ def left_join_indexer_unique(
298298
indexer[i] = j
299299
i += 1
300300

301-
if left[i] == right[j]:
301+
if left[i] == rval:
302302
indexer[i] = j
303303
i += 1
304304
while i < nleft - 1 and left[i] == rval:

0 commit comments

Comments
 (0)