diff options
author | Eddy Pedroni <eddy@0xf7.com> | 2021-12-22 17:06:53 +0100 |
---|---|---|
committer | Eddy Pedroni <eddy@0xf7.com> | 2021-12-22 17:10:08 +0100 |
commit | 59b13af09a5e35ea1364eb1031be4ce9410f6f03 (patch) | |
tree | ac2cd68dd28541d38fec91041c7c4175dbd6731e /playlist.py | |
parent | b2772136b6d1813150bf7a2e0a0a98085db6af0b (diff) |
Added MVP Qt implementation, known issues tracking, removed old files
Diffstat (limited to 'playlist.py')
-rw-r--r-- | playlist.py | 3 |
1 files changed, 0 insertions, 3 deletions
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 |