Skip to content

Commit 6684f34

Browse files
format
1 parent c3d9cc0 commit 6684f34

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

pandas/core/groupby/groupby.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3658,16 +3658,16 @@ def rolling(
36583658
If ``'right'``, (First, Last] the last point in the window
36593659
is included in the calculations.
36603660
3661-
If ``'left'``, [First, Last) the first point in the window
3661+
If ``'left'``, [First, Last) the first point in the window
36623662
is included in the calculations.
36633663
3664-
If ``'both'``, [First, Last] all points in the window
3664+
If ``'both'``, [First, Last] all points in the window
36653665
are included in the calculations.
36663666
3667-
If ``'neither'``, (First, Last) the first and last points
3667+
If ``'neither'``, (First, Last) the first and last points
36683668
in the window are excludedfrom calculations.
36693669
3670-
() and [] are referencing open and closed set
3670+
() and [] are referencing open and closed set
36713671
notation respetively.
36723672
36733673
Default ``None`` (``'right'``).

pandas/core/window/rolling.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -933,16 +933,16 @@ class Window(BaseWindow):
933933
If ``'right'``, (First, Last] the last point in the window
934934
is included in the calculations.
935935
936-
If ``'left'``, [First, Last) the first point in the window
936+
If ``'left'``, [First, Last) the first point in the window
937937
is included in the calculations.
938938
939-
If ``'both'``, [First, Last] all points in the window
939+
If ``'both'``, [First, Last] all points in the window
940940
are included in the calculations.
941941
942-
If ``'neither'``, (First, Last) the first and last points
942+
If ``'neither'``, (First, Last) the first and last points
943943
in the window are excludedfrom calculations.
944944
945-
() and [] are referencing open and closed set
945+
() and [] are referencing open and closed set
946946
notation respetively.
947947
948948
Default ``None`` (``'right'``).

0 commit comments

Comments
 (0)