Skip to content

Commit 86ef129

Browse files
committed
trim bad link
1 parent c34ae46 commit 86ef129

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/core/arrays/string_arrow.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -422,7 +422,7 @@ def _str_find(self, sub: str, start: int = 0, end: int | None = None):
422422
and not (start != 0 and end is not None)
423423
and not (start == 0 and end is None)
424424
):
425-
# https://github.com/pandas-dev/pandas/pull/59562/files#r1725688888
425+
# GH#59562
426426
return super()._str_find(sub, start, end)
427427
return ArrowStringArrayMixin._str_find(self, sub, start, end)
428428

0 commit comments

Comments
 (0)