Skip to content

Commit 211429a

Browse files
committed
fix repeated whitespace
1 parent a2e43ad commit 211429a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/_libs/tslibs/offsets.pyx

+2-2
Original file line numberDiff line numberDiff line change
@@ -4883,7 +4883,7 @@ def _warn_about_deprecated_aliases(name: str, is_period: bool) -> str:
48834883
warnings.warn(
48844884
f"\'{name}\' is deprecated and will be removed "
48854885
f"in a future version, please use "
4886-
f"\'{c_PERIOD_AND_OFFSET_DEPR_FREQSTR.get(name)}\' "
4886+
f"\'{c_PERIOD_AND_OFFSET_DEPR_FREQSTR.get(name)}\'"
48874887
f" instead.",
48884888
FutureWarning,
48894889
stacklevel=find_stack_level(),
@@ -4897,7 +4897,7 @@ def _warn_about_deprecated_aliases(name: str, is_period: bool) -> str:
48974897
warnings.warn(
48984898
f"\'{name}\' is deprecated and will be removed "
48994899
f"in a future version, please use "
4900-
f"\'{_name}\' "
4900+
f"\'{_name}\'"
49014901
f" instead.",
49024902
FutureWarning,
49034903
stacklevel=find_stack_level(),

0 commit comments

Comments
 (0)