Files
librespot-python/librespot/player/mixing/AudioSink.py
deepsource-autofix[bot] 45e69da1a8 Format code with yapf
This commit fixes the style issues introduced in 3df41f0 according to the output
from yapf.

Details: https://deepsource.io/gh/kokarare1212/librespot-python/transform/8943cbb4-879c-4a5f-8f77-e14c8c5ac178/
2021-04-09 23:16:05 +00:00

13 lines
297 B
Python

from __future__ import annotations
from librespot.player import PlayerConfiguration
class AudioSink:
def __init__(self, conf: PlayerConfiguration,
listener: AudioSink.Listener):
pass
class Listener:
def sink_error(self, ex: Exception):
pass