Skip to content

Commit a35ae69

Browse files
authored
CLN: missing f for f-string (#44278)
1 parent 015541e commit a35ae69

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/core/dtypes/cast.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1590,7 +1590,7 @@ def try_timedelta(v: np.ndarray) -> np.ndarray:
15901590
warnings.warn(
15911591
f"Inferring {value.dtype} from data containing strings is deprecated "
15921592
"and will be removed in a future version. To retain the old behavior "
1593-
"explicitly pass Series(data, dtype={value.dtype})",
1593+
f"explicitly pass Series(data, dtype={value.dtype})",
15941594
FutureWarning,
15951595
stacklevel=find_stack_level(),
15961596
)

0 commit comments

Comments
 (0)