Skip to content

Commit

Permalink
RT03 fix in pandas.Series.pop docstring. (#59103)
Browse files Browse the repository at this point in the history
  • Loading branch information
MarkAkritov committed Jun 25, 2024
1 parent 7ca6cd0 commit d465645
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ci/code_checks.sh
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
-i "pandas.Series.ne SA01" \
-i "pandas.Series.pad PR01,SA01" \
-i "pandas.Series.plot PR02" \
-i "pandas.Series.pop RT03,SA01" \
-i "pandas.Series.pop SA01" \
-i "pandas.Series.prod RT03" \
-i "pandas.Series.product RT03" \
-i "pandas.Series.reorder_levels RT03,SA01" \
Expand Down
3 changes: 2 additions & 1 deletion pandas/core/series.py
Original file line number Diff line number Diff line change
Expand Up @@ -5020,7 +5020,8 @@ def pop(self, item: Hashable) -> Any:
Returns
-------
Value that is popped from series.
scalar
Value that is popped from series.
Examples
--------
Expand Down

0 comments on commit d465645

Please sign in to comment.