File tree 2 files changed +6
-1
lines changed
2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -89,7 +89,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
89
89
-i " pandas.Interval PR02" \
90
90
-i " pandas.Interval.closed SA01" \
91
91
-i " pandas.Interval.left SA01" \
92
- -i " pandas.Interval.mid SA01" \
93
92
-i " pandas.Interval.right SA01" \
94
93
-i " pandas.IntervalIndex.closed SA01" \
95
94
-i " pandas.IntervalIndex.contains RT03" \
Original file line number Diff line number Diff line change @@ -167,6 +167,12 @@ cdef class IntervalMixin:
167
167
"""
168
168
Return the midpoint of the Interval.
169
169
170
+ See Also
171
+ --------
172
+ Interval.left : Return the left bound for the interval.
173
+ Interval.right : Return the right bound for the interval.
174
+ Interval.length : Return the length of the interval.
175
+
170
176
Examples
171
177
--------
172
178
>>> iv = pd.Interval(0, 5)
You can’t perform that action at this time.
0 commit comments