don't include the day in the last updated text

This commit is contained in:
Sina Atalay 2023-11-29 18:05:30 +01:00
parent c5f1af2513
commit 6b6432b716
1 changed files with 2 additions and 2 deletions

View File

@ -278,14 +278,14 @@ def divide_length_by(length: str, divider: float) -> str:
def get_today() -> str:
"""Return today's date.
"""Return today's date in the format of "Month, Year".
Returns:
str: Today's date.
"""
today = date.today()
return today.strftime("%B %d, %Y")
return today.strftime("%B, %Y")
def get_path_to_font_directory(font_name: str) -> str: