]> kaliko git repositories - mpd-sima.git/blobdiff - sima/lib/player.py
Releasing 0.12.3
[mpd-sima.git] / sima / lib / player.py
index ddba0a9bea46357e94ec2f5bc6a1ebef7b19f6fd..ea57255f4713c6a6026c78ec11de625839ea31c1 100644 (file)
 # standard library import
 import logging
 
-# local import
-#from sima.lib.track import Track
-
 
 class Player(object):
-
     """Player interface to inherit from.
 
     When querying player music library for tracks, Player instance *must* return
@@ -58,6 +54,10 @@ class Player(object):
         """
         raise NotImplementedError
 
+    def clean(self):
+        """Any cleanup necessary"""
+        pass
+
     def remove(self, position=0):
         """Removes the oldest element of the playlist (index 0)
         """