Format code with yapf

This commit fixes the style issues introduced in 4502848 according to the output
from yapf.

Details: https://deepsource.io/gh/kokarare1212/librespot-python/transform/ce5167d0-9711-4c7d-a401-05c377522186/
This commit is contained in:
deepsource-autofix[bot] 2021-07-07 08:00:26 +00:00 committed by GitHub
parent 4502848265
commit 269240c9c7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 2 deletions

View File

@ -115,8 +115,9 @@ def login():
def play(track_id_str: str):
track_id = TrackId.from_base62(track_id_str)
stream = session.content_feeder().load(
track_id, VorbisOnlyAudioQuality(quality), False, None)
stream = session.content_feeder().load(track_id,
VorbisOnlyAudioQuality(quality),
False, None)
ffplay = subprocess.Popen(
["ffplay", "-"],
stdin=subprocess.PIPE,