Skip to content

Commit 8a9bc9e

Browse files
adamkleinwesm
authored andcommitted
FIX: multiindex, comma fix
1 parent f888d0d commit 8a9bc9e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/core/index.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1543,7 +1543,7 @@ def get_indexer(self, target, method=None):
15431543
target_index = target.get_tuple_index()
15441544

15451545
if target_index.dtype != object:
1546-
return np.ones(len(target_index),) * -1
1546+
return np.ones(len(target_index)) * -1
15471547

15481548
self_index = self
15491549
if self._is_legacy_format:

0 commit comments

Comments
 (0)