Skip to content

Commit 04d828b

Browse files
committed
more pep
1 parent 0ead3cc commit 04d828b

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

pandas/index.pyx

+3-2
Original file line numberDiff line numberDiff line change
@@ -557,8 +557,9 @@ 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, \
561-
mi.is_unique
560+
return (mi.is_monotonic_increasing,
561+
mi.is_monotonic_decreasing,
562+
mi.is_unique)
562563

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

0 commit comments

Comments
 (0)