11 lines
243 B
Python
11 lines
243 B
Python
from __future__ import annotations
|
|
import typing
|
|
|
|
if typing.TYPE_CHECKING:
|
|
from librespot.proto import Metadata
|
|
|
|
|
|
class AudioQualityPicker:
|
|
def get_file(self, files: typing.List[Metadata.AudioFile]) -> Metadata.AudioFile:
|
|
pass
|