Skip to content

Commit d465645

Browse files
authored
RT03 fix in pandas.Series.pop docstring. (#59103)
1 parent 7ca6cd0 commit d465645

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

ci/code_checks.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
162162
-i "pandas.Series.ne SA01" \
163163
-i "pandas.Series.pad PR01,SA01" \
164164
-i "pandas.Series.plot PR02" \
165-
-i "pandas.Series.pop RT03,SA01" \
165+
-i "pandas.Series.pop SA01" \
166166
-i "pandas.Series.prod RT03" \
167167
-i "pandas.Series.product RT03" \
168168
-i "pandas.Series.reorder_levels RT03,SA01" \

pandas/core/series.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -5020,7 +5020,8 @@ def pop(self, item: Hashable) -> Any:
50205020
50215021
Returns
50225022
-------
5023-
Value that is popped from series.
5023+
scalar
5024+
Value that is popped from series.
50245025
50255026
Examples
50265027
--------

0 commit comments

Comments
 (0)