Skip to content

Commit 623d27c

Browse files
committed
pep
1 parent 3926f88 commit 623d27c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pandas/index.pyx

+2-1
Original file line numberDiff line numberDiff line change
@@ -557,7 +557,8 @@ cdef class MultiIndexEngine(IndexEngine):
557557

558558
def _call_monotonic(self, object mi):
559559
# defer these back to the mi iteself
560-
return mi.is_monotonic_increasing, mi.is_monotonic_decreasing, mi.is_unique
560+
return mi.is_monotonic_increasing, mi.is_monotonic_decreasing, \
561+
mi.is_unique
561562

562563
def get_backfill_indexer(self, other, limit=None):
563564
# we coerce to ndarray-of-tuples

0 commit comments

Comments
 (0)