From cf6b874f45c3eeab7023bd26473064a8f6e2d5fe Mon Sep 17 00:00:00 2001 From: drakeerv Date: Sun, 11 Aug 2024 01:04:07 -0400 Subject: [PATCH] Fix formatting --- community/src/music.py | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/community/src/music.py b/community/src/music.py index c68a257..73dc9ce 100644 --- a/community/src/music.py +++ b/community/src/music.py @@ -1,8 +1,9 @@ import pyglet.media + class MusicPlayer(pyglet.media.Player): - def __init__(self): - super().__init__() - - self.standby = False - self.next_time = 0 \ No newline at end of file + def __init__(self): + super().__init__() + + self.standby = False + self.next_time = 0