We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ead3cc commit 04d828bCopy full SHA for 04d828b
pandas/index.pyx
@@ -557,8 +557,9 @@ 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, \
561
- mi.is_unique
+ return (mi.is_monotonic_increasing,
+ mi.is_monotonic_decreasing,
562
+ mi.is_unique)
563
564
def get_backfill_indexer(self, other, limit=None):
565
# we coerce to ndarray-of-tuples
0 commit comments