From 82c9389031802d2b88f54332135bc6d49778a2a6 Mon Sep 17 00:00:00 2001 From: jack1142 <6032823+jack1142@users.noreply.github.com> Date: Wed, 2 Mar 2022 20:49:34 +0100 Subject: [PATCH] Reformat with Black 22.1.0 --- lavalink/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lavalink/utils.py b/lavalink/utils.py index 92ba8ee1..3c50e6b2 100644 --- a/lavalink/utils.py +++ b/lavalink/utils.py @@ -1,5 +1,5 @@ def format_time(time): - """ Formats the given time into HH:MM:SS """ + """Formats the given time into HH:MM:SS""" h, r = divmod(time / 1000, 3600) m, s = divmod(r, 60)