Skip to content

Commit fb972ef

Browse files
committed
FIX: Type hint for Tuple in _reorder_indexer
1 parent efa4494 commit fb972ef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/core/indexes/multi.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3129,7 +3129,7 @@ def _reorder_indexer(
31293129
indexer : a sorted Int64Index indexer of self ordered as seq
31303130
"""
31313131
n = len(self)
3132-
keys = tuple()
3132+
keys = tuple() # type: Tuple[np.ndarray, ...]
31333133
# For each level of the sequence in seq, map the level codes with the
31343134
# order they appears in a list-like sequence
31353135
# This mapping is then use to reorder the indexer

0 commit comments

Comments
 (0)