Skip to content

Commit 78af1b9

Browse files
committed
trim bad link
1 parent dab70ae commit 78af1b9

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
@@ -480,7 +480,7 @@ def _str_find(self, sub: str, start: int = 0, end: int | None = None):
480480
and not (start != 0 and end is not None)
481481
and not (start == 0 and end is None)
482482
):
483-
# https://github.com/pandas-dev/pandas/pull/59562/files#r1725688888
483+
# GH#59562
484484
return super()._str_find(sub, start, end)
485485
return ArrowStringArrayMixin._str_find(self, sub, start, end)
486486

0 commit comments

Comments
 (0)