1
Fork 0
mirror of https://github.com/RGBCube/GitHubWrapper synced 2025-05-14 13:15:00 +00:00

Fix typos

This commit is contained in:
RGBCube 2022-06-25 16:08:54 +03:00
parent c04b69fcb7
commit a2a582dd5b
4 changed files with 7 additions and 7 deletions

View file

@ -19,7 +19,7 @@ def human_readable_time_until(td: timedelta, /) -> str:
hours, seconds = divmod(seconds, 3600)
minutes, seconds = divmod(seconds, 60)
return f"{hours} hours, {minutes} minues, {seconds} seconds"
return f"{hours} hours, {minutes} minutes, {seconds} seconds"
def str_to_datetime(time: Optional[str], /) -> Optional[datetime]: