Skip to content

Commit

Permalink
Reformat with Black 22.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Jackenmen committed Mar 2, 2022
1 parent 78b6d2d commit 82c9389
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lavalink/utils.py
Original file line number Diff line number Diff line change
@@ -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)

Expand Down

0 comments on commit 82c9389

Please sign in to comment.