From 57aad68eccdf7a80cfa73f95224c01bfa7c0705d Mon Sep 17 00:00:00 2001 From: Wouter De Coster Date: Fri, 22 Feb 2019 14:30:24 +0100 Subject: [PATCH] Edited docstring of Interval The docstring contained a repeated segment, which I removed. --- pandas/_libs/interval.pyx | 3 --- 1 file changed, 3 deletions(-) diff --git a/pandas/_libs/interval.pyx b/pandas/_libs/interval.pyx index eb511b1adb28a..e86b692e9915e 100644 --- a/pandas/_libs/interval.pyx +++ b/pandas/_libs/interval.pyx @@ -150,9 +150,6 @@ cdef class Interval(IntervalMixin): Left bound for the interval. right : orderable scalar Right bound for the interval. - closed : {'left', 'right', 'both', 'neither'}, default 'right' - Whether the interval is closed on the left-side, right-side, both or - neither. closed : {'right', 'left', 'both', 'neither'}, default 'right' Whether the interval is closed on the left-side, right-side, both or neither. See the Notes for more detailed explanation.