Skip to content

Commit

Permalink
trim bad link
Browse files Browse the repository at this point in the history
  • Loading branch information
jbrockmendel committed Aug 27, 2024
1 parent dab70ae commit 78af1b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pandas/core/arrays/string_arrow.py
Original file line number Diff line number Diff line change
Expand Up @@ -480,7 +480,7 @@ def _str_find(self, sub: str, start: int = 0, end: int | None = None):
and not (start != 0 and end is not None)
and not (start == 0 and end is None)
):
# https://github.com/pandas-dev/pandas/pull/59562/files#r1725688888
# GH#59562
return super()._str_find(sub, start, end)
return ArrowStringArrayMixin._str_find(self, sub, start, end)

Expand Down

0 comments on commit 78af1b9

Please sign in to comment.