Skip to content

Commit 824750a

Browse files
DOC: fix SA01 for pandas.errors.UnsupportedFunctionCall (#60072)
1 parent 40b5610 commit 824750a

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

ci/code_checks.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
138138
-i "pandas.errors.PossibleDataLossError SA01" \
139139
-i "pandas.errors.UndefinedVariableError PR01,SA01" \
140140
-i "pandas.errors.UnsortedIndexError SA01" \
141-
-i "pandas.errors.UnsupportedFunctionCall SA01" \
142141
-i "pandas.errors.ValueLabelTypeMismatch SA01" \
143142
-i "pandas.infer_freq SA01" \
144143
-i "pandas.io.json.build_table_schema PR07,RT03,SA01" \

pandas/errors/__init__.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,12 @@ class UnsupportedFunctionCall(ValueError):
7676
7777
For example, ``np.cumsum(groupby_object)``.
7878
79+
See Also
80+
--------
81+
DataFrame.groupby : Group DataFrame using a mapper or by a Series of columns.
82+
Series.groupby : Group Series using a mapper or by a Series of columns.
83+
core.groupby.GroupBy.cumsum : Compute cumulative sum for each group.
84+
7985
Examples
8086
--------
8187
>>> df = pd.DataFrame(

0 commit comments

Comments
 (0)