Skip to content

Commit

Permalink
DOC: Fix pandas.Series.str.index RT03 (#59397)
Browse files Browse the repository at this point in the history
* DOC: fix pandas.Series.str.index RT03

* DOC: Remove pandas.Series.str.index RT03 from ci checks

* remove pandas.Series.str.rindex RT03 from ci check
  • Loading branch information
KatsiarynaDzibrova authored Aug 9, 2024
1 parent 3a7d82d commit 5591ef3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 0 additions & 2 deletions ci/code_checks.sh
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
-i "pandas.Series.str.center RT03,SA01" \
-i "pandas.Series.str.decode PR07,RT03,SA01" \
-i "pandas.Series.str.encode PR07,RT03,SA01" \
-i "pandas.Series.str.index RT03" \
-i "pandas.Series.str.ljust RT03,SA01" \
-i "pandas.Series.str.lower RT03" \
-i "pandas.Series.str.lstrip RT03" \
Expand All @@ -172,7 +171,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
-i "pandas.Series.str.partition RT03" \
-i "pandas.Series.str.repeat SA01" \
-i "pandas.Series.str.replace SA01" \
-i "pandas.Series.str.rindex RT03" \
-i "pandas.Series.str.rjust RT03,SA01" \
-i "pandas.Series.str.rpartition RT03" \
-i "pandas.Series.str.rstrip RT03" \
Expand Down
2 changes: 2 additions & 0 deletions pandas/core/strings/accessor.py
Original file line number Diff line number Diff line change
Expand Up @@ -3092,6 +3092,8 @@ def normalize(self, form):
Returns
-------
Series or Index of object
Returns a Series or an Index of the %(side)s indexes
in each string of the input.
See Also
--------
Expand Down

0 comments on commit 5591ef3

Please sign in to comment.