Skip to content

Commit

Permalink
add back tuple
Browse files Browse the repository at this point in the history
  • Loading branch information
mroeschke committed Jun 11, 2024
1 parent 585cbc2 commit bf88987
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pandas/core/indexing.py
Original file line number Diff line number Diff line change
Expand Up @@ -2352,7 +2352,7 @@ def _align_series(
def ravel(i):
return i.ravel() if isinstance(i, np.ndarray) else i

indexer = map(ravel, indexer)
indexer = tuple(map(ravel, indexer))

aligners = [not com.is_null_slice(idx) for idx in indexer]
sum_aligners = sum(aligners)
Expand Down

0 comments on commit bf88987

Please sign in to comment.