File tree 2 files changed +4
-6
lines changed
2 files changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -1543,8 +1543,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
1543
1543
1544
1544
MSG=' Partially validate docstrings (SA05)' ; echo $MSG
1545
1545
$BASE_DIR /scripts/validate_docstrings.py --format=actions --errors=SA05 --ignore_functions \
1546
- pandas.core.groupby.DataFrameGroupBy.first\
1547
- pandas.core.groupby.DataFrameGroupBy.last\
1548
1546
pandas.core.groupby.SeriesGroupBy.first\
1549
1547
pandas.core.groupby.SeriesGroupBy.last\
1550
1548
pandas.core.resample.Resampler.first\
Original file line number Diff line number Diff line change @@ -3219,9 +3219,9 @@ def first(
3219
3219
--------
3220
3220
DataFrame.groupby : Apply a function groupby to each row or column of a
3221
3221
DataFrame.
3222
- pandas. core.groupby.DataFrameGroupBy.last : Compute the last non-null entry
3222
+ core.groupby.DataFrameGroupBy.last : Compute the last non-null entry
3223
3223
of each column.
3224
- pandas. core.groupby.DataFrameGroupBy.nth : Take the nth row from each group.
3224
+ core.groupby.DataFrameGroupBy.nth : Take the nth row from each group.
3225
3225
3226
3226
Examples
3227
3227
--------
@@ -3306,9 +3306,9 @@ def last(
3306
3306
--------
3307
3307
DataFrame.groupby : Apply a function groupby to each row or column of a
3308
3308
DataFrame.
3309
- pandas. core.groupby.DataFrameGroupBy.first : Compute the first non-null entry
3309
+ core.groupby.DataFrameGroupBy.first : Compute the first non-null entry
3310
3310
of each column.
3311
- pandas. core.groupby.DataFrameGroupBy.nth : Take the nth row from each group.
3311
+ core.groupby.DataFrameGroupBy.nth : Take the nth row from each group.
3312
3312
3313
3313
Examples
3314
3314
--------
You can’t perform that action at this time.
0 commit comments