1
0
Fork 0
mirror of https://github.com/myned/modufur.git synced 2024-11-01 13:02:38 +00:00

Remove comment

This commit is contained in:
Myned 2022-03-04 13:18:29 -06:00
parent 2642b793e8
commit bd71ecc585
No known key found for this signature in database
GPG key ID: 33790F979F7A28B8

View file

@ -548,7 +548,7 @@ async def running(guild_id):
def convert(seconds): def convert(seconds):
h = seconds // 3600 h = seconds // 3600
m = seconds % 3600 // 60 m = seconds % 3600 // 60
s = seconds % 3600 % 60 # YouTube values seem to be one second lower s = seconds % 3600 % 60
return f"{f'{h}:' if h else ''}{m}:{s:02d}" return f"{f'{h}:' if h else ''}{m}:{s:02d}"