Skip to content

Commit e10c70a

Browse files
committed
fix errors
1 parent a42d982 commit e10c70a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

ci/code_checks.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
275275
-i "pandas.core.groupby.SeriesGroupBy.nth PR02" \
276276
-i "pandas.core.groupby.SeriesGroupBy.ohlc SA01" \
277277
-i "pandas.core.groupby.SeriesGroupBy.plot PR02" \
278-
-i "pandas.core.groupby.SeriesGroupBy.prod SA01" \
279278
-i "pandas.core.groupby.SeriesGroupBy.sem SA01" \
280279
-i "pandas.core.groupby.SeriesGroupBy.sum SA01" \
281280
-i "pandas.core.resample.Resampler.__iter__ RT03,SA01" \

pandas/core/groupby/groupby.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3027,8 +3027,9 @@ def prod(self, numeric_only: bool = False, min_count: int = 0) -> NDFrameT:
30273027
30283028
See Also
30293029
--------
3030+
Series.prod : Return the product of the values over the requested axis.
30303031
DataFrame.prod : Return the product of the values over the requested axis.
3031-
3032+
30323033
Examples
30333034
--------
30343035
For SeriesGroupBy:

0 commit comments

Comments
 (0)