Skip to content

Commit 0cb74e2

Browse files
committed
trim bad link
1 parent 891cf59 commit 0cb74e2

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
@@ -428,7 +428,7 @@ def _str_find(self, sub: str, start: int = 0, end: int | None = None):
428428
and not (start != 0 and end is not None)
429429
and not (start == 0 and end is None)
430430
):
431-
# https://github.com/pandas-dev/pandas/pull/59562/files#r1725688888
431+
# GH#59562
432432
return super()._str_find(sub, start, end)
433433
return ArrowStringArrayMixin._str_find(self, sub, start, end)
434434

0 commit comments

Comments
 (0)