This commit is contained in:
Jazzzny
2023-09-29 17:51:51 -04:00
parent 25f5ea2457
commit ce0928ba38
3 changed files with 9 additions and 4 deletions

View File

@@ -60,8 +60,8 @@ def seconds_to_readable_time(seconds) -> str:
seconds = int(seconds)
time = ""
if seconds == 0:
return "0m "
if seconds < 60:
return "Less than a minute "
if seconds < 0:
return "Indeterminate time "