From 59b13af09a5e35ea1364eb1031be4ce9410f6f03 Mon Sep 17 00:00:00 2001 From: Eddy Pedroni Date: Wed, 22 Dec 2021 17:06:53 +0100 Subject: Added MVP Qt implementation, known issues tracking, removed old files --- playlist.py | 3 --- 1 file changed, 3 deletions(-) (limited to 'playlist.py') diff --git a/playlist.py b/playlist.py index 5c52774..084fd21 100644 --- a/playlist.py +++ b/playlist.py @@ -1,4 +1,3 @@ -import logging class Playlist: def __init__(self, callback): @@ -8,13 +7,11 @@ class Playlist: def addSong(self, path): self._songList.append(path) - logging.debug(f"Added song: {path}") def setCurrentSong(self, index): if index >= 0 and index < len(self._songList): self._currentSong = index self._setSongCallback(self._songList[index]) - logging.debug(f"Selected song: {self._currentSong}") def getCurrentSong(self): index = self._currentSong -- cgit v1.2.3