Skip to content

Commit 1b5df6d

Browse files
committed
Fix line length in docstrings to comply with E501
1 parent 056859d commit 1b5df6d

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

pandas/core/frame.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9572,7 +9572,8 @@ def groupby(
95729572
b 12.3 123.0
95739573
NaN 12.3 33.0
95749574
9575-
When using ``.apply()``, use ``group_keys`` to include or exclude the group keys.
9575+
When using ``.apply()``, use ``group_keys`` to include or exclude the
9576+
group keys.
95769577
The ``group_keys`` argument defaults to ``True`` (include).
95779578
95789579
>>> df = pd.DataFrame({'Animal': ['Falcon', 'Falcon',

pandas/core/series.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2067,7 +2067,8 @@ def groupby(
20672067
Examples
20682068
--------
20692069
>>> ser = pd.Series([390., 350., 30., 20.],
2070-
... index=['Falcon', 'Falcon', 'Parrot', 'Parrot'], name="Max Speed")
2070+
... index=['Falcon', 'Falcon', 'Parrot', 'Parrot'],
2071+
name="Max Speed")
20712072
>>> ser
20722073
Falcon 390.0
20732074
Falcon 350.0

0 commit comments

Comments
 (0)