librespot-python/librespot/audio/format/AudioQualityPicker.py
deepsource-autofix[bot] cec130aa39
Format code with yapf
This commit fixes the style issues introduced in b779a6a according to the output
from yapf.

Details: https://deepsource.io/gh/kokarare1212/librespot-python/transform/ef955754-0053-413b-8235-a6a87e8254d0/
2021-04-24 12:25:52 +00:00

12 lines
260 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