Skip to content

Commit 0c0c952

Browse files
author
luke
committed
fix wrong ci num
1 parent 1975080 commit 0c0c952

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

pandas/core/apply.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ def __init__(
130130
def f(x):
131131
return func(x, *args, **kwargs)
132132

133-
# GH 50642
133+
# GH 50624
134134
elif (
135135
(args or kwargs)
136136
and not isinstance(func, str)
@@ -1217,7 +1217,7 @@ def is_multi_agg_with_relabel(**kwargs) -> bool:
12171217

12181218

12191219
def is_one_element_callable_list(func: AggFuncType | None) -> bool:
1220-
# GH 50642
1220+
# GH 50624
12211221
return isinstance(func, list) and len(func) == 1
12221222

12231223

pandas/tests/apply/test_frame_apply_relabeling.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ def test_agg_namedtuple():
9898

9999

100100
def test_agg_given_one_element_func_list_arg_kwargs():
101-
# GH 50642
101+
# GH 50624
102102
df = pd.DataFrame({"x": [1, 2, 3]})
103103

104104
def foo(x, a, b=2):

0 commit comments

Comments
 (0)