Skip to content

Commit 4c0274a

Browse files
committed
fix warning
1 parent 3c390fe commit 4c0274a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/core/apply.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1095,7 +1095,7 @@ def apply_standard(self) -> DataFrame | Series:
10951095
if len(mapped) and isinstance(mapped[0], ABCSeries):
10961096
warnings.warn(
10971097
"converting list of Series to a DataFrame in the Series.apply method "
1098-
"is deprecated and will be removed in the future version.",
1098+
"is deprecated and will be removed in a future version.",
10991099
FutureWarning,
11001100
stacklevel=find_stack_level(),
11011101
) # GH52116

0 commit comments

Comments
 (0)