fix: fix flake8 complaint

Signed-off-by: Matthias Blankertz <matthias@blankertz.org>
This commit is contained in:
2025-12-21 17:37:00 +01:00
parent 9cf044bc80
commit 040ae4a731
2 changed files with 2 additions and 5 deletions

View File

@@ -196,8 +196,5 @@ class PlayerApp:
def get_playlist_db(self): def get_playlist_db(self):
return self.playlist_db return self.playlist_db
def get_timer_manager(self):
return self.timer_manager
def get_leds(self): def get_leds(self):
return self.leds return self.leds

View File

@@ -33,7 +33,7 @@ def start_webserver(config_, app_):
nfc = app.get_nfc() nfc = app.get_nfc()
playlist_db = app.get_playlist_db() playlist_db = app.get_playlist_db()
leds = app.get_leds() leds = app.get_leds()
timer_manager = app.get_timer_manager() timer_manager = TimerManager()
@webapp.before_request @webapp.before_request