Skip to content

Commit 1f03242

Browse files
Place space at the end of string instead of at the beginning of next line
1 parent 0d7a1cb commit 1f03242

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/core/tools/timedeltas.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -129,8 +129,8 @@ def to_timedelta(arg, unit=None, errors="raise"):
129129
)
130130
elif arg.upper().endswith(" M") or arg.upper().endswith(" Y"):
131131
warnings.warn(
132-
"Denoting units with 'M', 'Y', 'm' or 'y' do not represent unambiguous"
133-
" timedelta values durations and will removed in a future version",
132+
"Denoting units with 'M', 'Y', 'm' or 'y' do not represent unambiguous "
133+
"timedelta values durations and will removed in a future version",
134134
FutureWarning,
135135
stacklevel=2,
136136
)

0 commit comments

Comments
 (0)