Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
SebastianOuslis committed Feb 4, 2025
1 parent 30cf4c1 commit ff17ffc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions pandas/core/groupby/groupby.py
Original file line number Diff line number Diff line change
Expand Up @@ -3716,10 +3716,10 @@ def rolling(
If ``'left'``, uses the window [first, last) meaning the first point
is included in the calculations.
If ``'both'``, uses the window [first, last] meaning all points in
If ``'both'``, uses the window [first, last] meaning all points in
the window are included in the calculations.
If ``'neither'``, uses the window (first, last) meaning the first
If ``'neither'``, uses the window (first, last) meaning the first
and last points in the window are excluded from calculations.
() and [] are referencing open and closed set
Expand Down
4 changes: 2 additions & 2 deletions pandas/core/window/rolling.py
Original file line number Diff line number Diff line change
Expand Up @@ -937,10 +937,10 @@ class Window(BaseWindow):
If ``'left'``, uses the window [first, last) meaning the first point
is included in the calculations.
If ``'both'``, uses the window [first, last] meaning all points in
If ``'both'``, uses the window [first, last] meaning all points in
the window are included in the calculations.
If ``'neither'``, uses the window (first, last) meaning the first
If ``'neither'``, uses the window (first, last) meaning the first
and last points in the window are excluded from calculations.
() and [] are referencing open and closed set
Expand Down

0 comments on commit ff17ffc

Please sign in to comment.