(context: ClientContext)
| 168 | |
| 169 | |
| 170 | async def print_status(context: ClientContext): |
| 171 | state = await context.service.current_playback() |
| 172 | if not state: |
| 173 | print("Nothing playing according to Spotify") |
| 174 | await list_available_devices(context) |
| 175 | |
| 176 | |
| 177 | async def list_available_devices(context: ClientContext): |
no test coverage detected
searching dependent graphs…