We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c6250b2 commit 0ead3ccCopy full SHA for 0ead3cc
pandas/index.pyx
@@ -557,7 +557,8 @@ cdef class MultiIndexEngine(IndexEngine):
557
558
def _call_monotonic(self, object mi):
559
# defer these back to the mi iteself
560
- return mi.is_monotonic_increasing, mi.is_monotonic_decreasing, mi.is_unique
+ return mi.is_monotonic_increasing, mi.is_monotonic_decreasing, \
561
+ mi.is_unique
562
563
def get_backfill_indexer(self, other, limit=None):
564
# we coerce to ndarray-of-tuples
0 commit comments