]> kaliko git repositories - mpd-sima.git/blobdiff - sima/lib/player.py
Releasing 0.12.3
[mpd-sima.git] / sima / lib / player.py
index 6b6d2cba4dec19ff4cd19039f9a1ac4c3c8ced9e..ea57255f4713c6a6026c78ec11de625839ea31c1 100644 (file)
@@ -24,9 +24,6 @@
 # standard library import
 import logging
 
-# local import
-#from sima.lib.track import Track
-
 
 class Player(object):
     """Player interface to inherit from.
@@ -57,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)
         """