From bd71ecc585f59a5b7292161bccbc6e9e7c35e4b5 Mon Sep 17 00:00:00 2001 From: Myned Date: Fri, 4 Mar 2022 13:18:29 -0600 Subject: [PATCH] Remove comment --- commands/music.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/music.py b/commands/music.py index 4643bff..2242271 100644 --- a/commands/music.py +++ b/commands/music.py @@ -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}"