Skip to content

Commit 84edcb5

Browse files
committed
trim bad link
1 parent 2448e9d commit 84edcb5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/core/arrays/string_arrow.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -478,7 +478,7 @@ def _str_find(self, sub: str, start: int = 0, end: int | None = None):
478478
and not (start != 0 and end is not None)
479479
and not (start == 0 and end is None)
480480
):
481-
# https://github.com/pandas-dev/pandas/pull/59562/files#r1725688888
481+
# GH#59562
482482
return super()._str_find(sub, start, end)
483483
return ArrowStringArrayMixin._str_find(self, sub, start, end)
484484

0 commit comments

Comments
 (0)