diff options
author | Eddy Pedroni <eddy@0xf7.com> | 2021-12-21 20:26:05 +0100 |
---|---|---|
committer | Eddy Pedroni <eddy@0xf7.com> | 2021-12-21 20:26:05 +0100 |
commit | 663970d0165e226147d95fb92c617714dfbd7553 (patch) | |
tree | e65c2dd0ffdd89ab06b9300d3d5f3428916d1870 /playlist.py | |
parent | ae8f0a04190c3d13292ad68548f5275507e5812e (diff) |
Rolled back some refactorings, added some integration tests
Diffstat (limited to 'playlist.py')
-rw-r--r-- | playlist.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/playlist.py b/playlist.py index e5a4daf..5c52774 100644 --- a/playlist.py +++ b/playlist.py @@ -1,10 +1,10 @@ import logging class Playlist: - def __init__(self, player): + def __init__(self, callback): self._songList = list() self._currentSong = None - self._setSongCallback = player.setCurrentSong + self._setSongCallback = callback def addSong(self, path): self._songList.append(path) |