(self)
| 280 | |
| 281 | @reconnect |
| 282 | def current_song(self): |
| 283 | item = self.client.playlistinfo(int(self.client.status()["song"]))[0] |
| 284 | result = "%s by %s" % (item["title"], item["artist"]) |
| 285 | return result |
| 286 | |
| 287 | @reconnect |
| 288 | def volume(self, level=None, interval=None): |
no outgoing calls
no test coverage detected