mirror of
https://github.com/myned/modufur.git
synced 2024-11-01 13:02:38 +00:00
Remove comment
This commit is contained in:
parent
2642b793e8
commit
bd71ecc585
1 changed files with 1 additions and 1 deletions
|
@ -548,7 +548,7 @@ async def running(guild_id):
|
|||
def convert(seconds):
|
||||
h = seconds // 3600
|
||||
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}"
|
||||
|
||||
|
|
Loading…
Reference in a new issue