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)