]> kaliko git repositories - mpd-sima.git/blobdiff - sima/lib/player.py
Fixed other inconsistencies
[mpd-sima.git] / sima / lib / player.py
index ddba0a9bea46357e94ec2f5bc6a1ebef7b19f6fd..37b3c7202dc392b842e25ff783effd34a7c6081f 100644 (file)
@@ -29,7 +29,6 @@ import logging
 
 
 class Player(object):
-
     """Player interface to inherit from.
 
     When querying player music library for tracks, Player instance *must* return
@@ -58,6 +57,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)
         """