Skip to content

Commit 0e0ca96

Browse files
committed
trim bad link
1 parent 0e307a2 commit 0e0ca96

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
@@ -454,7 +454,7 @@ def _str_find(self, sub: str, start: int = 0, end: int | None = None):
454454
and not (start != 0 and end is not None)
455455
and not (start == 0 and end is None)
456456
):
457-
# https://github.com/pandas-dev/pandas/pull/59562/files#r1725688888
457+
# GH#59562
458458
return super()._str_find(sub, start, end)
459459
return ArrowStringArrayMixin._str_find(self, sub, start, end)
460460

0 commit comments

Comments
 (0)