Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pandas/core/indexes/multi.py
Original file line number Diff line number Diff line change
Expand Up @@ -714,7 +714,7 @@ def is_monotonic_decreasing(self):
return if the index is monotonic decreasing (only equal or
decreasing) values.
"""
return False
return not self.is_strictly_monotonic_increasing or self.nunique() == 1

@cache_readonly
def is_unique(self):
Expand Down