(self, id, title, artist, album)
| 208 | |
| 209 | class Song(object): |
| 210 | def __init__(self, id, title, artist, album): |
| 211 | |
| 212 | self.id = id |
| 213 | self.title = title |
| 214 | self.artist = artist |
| 215 | self.album = album |
| 216 | |
| 217 | |
| 218 | class MPDWrapper(object): |
nothing calls this directly
no outgoing calls
no test coverage detected