fix(aurora): removed a character causing a valueerror

This commit is contained in:
Seaswimmer 2024-06-04 15:23:45 -04:00
parent 0a207b66e4
commit 166421b6ba
Signed by untrusted user: cswimr
GPG key ID: 5D671B5D03D65A7F

View file

@ -198,7 +198,7 @@ def timedelta_to_string(timedelta: timedelta) -> str:
"""Converts a timedelta object to a string."""
hours, remainder = divmod(timedelta.seconds, 3600)
minutes, seconds = divmod(remainder, 60)
return f"{hours}:{minutes}:{seconds}s"
return f"{hours}:{minutes}:{seconds}"
def get_footer_image(coginstance: commands.Cog) -> File:
"""Returns the footer image for the embeds."""