Skip to content

Commit

Permalink
fix repeated whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
haampie committed Jan 30, 2025
1 parent a2e43ad commit 211429a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pandas/_libs/tslibs/offsets.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -4883,7 +4883,7 @@ def _warn_about_deprecated_aliases(name: str, is_period: bool) -> str:
warnings.warn(
f"\'{name}\' is deprecated and will be removed "
f"in a future version, please use "
f"\'{c_PERIOD_AND_OFFSET_DEPR_FREQSTR.get(name)}\' "
f"\'{c_PERIOD_AND_OFFSET_DEPR_FREQSTR.get(name)}\'"
f" instead.",
FutureWarning,
stacklevel=find_stack_level(),
Expand All @@ -4897,7 +4897,7 @@ def _warn_about_deprecated_aliases(name: str, is_period: bool) -> str:
warnings.warn(
f"\'{name}\' is deprecated and will be removed "
f"in a future version, please use "
f"\'{_name}\' "
f"\'{_name}\'"
f" instead.",
FutureWarning,
stacklevel=find_stack_level(),
Expand Down

0 comments on commit 211429a

Please sign in to comment.