Skip to content

Commit 71b395f

Browse files
DOC: fix RT03 for pandas.core.groupby.DataFrameGroupBy.hist (#59870)
1 parent 2419343 commit 71b395f

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

ci/code_checks.sh

-1
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
144144
-i "pandas.core.groupby.DataFrameGroupBy.boxplot PR07,RT03,SA01" \
145145
-i "pandas.core.groupby.DataFrameGroupBy.get_group RT03,SA01" \
146146
-i "pandas.core.groupby.DataFrameGroupBy.groups SA01" \
147-
-i "pandas.core.groupby.DataFrameGroupBy.hist RT03" \
148147
-i "pandas.core.groupby.DataFrameGroupBy.indices SA01" \
149148
-i "pandas.core.groupby.DataFrameGroupBy.nth PR02" \
150149
-i "pandas.core.groupby.DataFrameGroupBy.nunique SA01" \

pandas/core/groupby/generic.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -2694,7 +2694,9 @@ def hist(
26942694
26952695
Returns
26962696
-------
2697-
matplotlib.Axes or numpy.ndarray of them
2697+
matplotlib.Axes or numpy.ndarray
2698+
A ``matplotlib.Axes`` object or an array of ``Axes`` objects, depending on
2699+
the layout and grouping.
26982700
26992701
See Also
27002702
--------

0 commit comments

Comments
 (0)