Skip to content

Commit eb59549

Browse files
committed
trim bad link
1 parent 253531e commit eb59549

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
@@ -443,7 +443,7 @@ def _str_find(self, sub: str, start: int = 0, end: int | None = None):
443443
and not (start != 0 and end is not None)
444444
and not (start == 0 and end is None)
445445
):
446-
# https://github.com/pandas-dev/pandas/pull/59562/files#r1725688888
446+
# GH#59562
447447
return super()._str_find(sub, start, end)
448448
return ArrowStringArrayMixin._str_find(self, sub, start, end)
449449

0 commit comments

Comments
 (0)