From 269240c9c721df55c258c18cd6ca48ec83a59fb4 Mon Sep 17 00:00:00 2001 From: "deepsource-autofix[bot]" <62050782+deepsource-autofix[bot]@users.noreply.github.com> Date: Wed, 7 Jul 2021 08:00:26 +0000 Subject: [PATCH] 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/ --- examples/player/main.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/examples/player/main.py b/examples/player/main.py index 47d60f8..384806e 100644 --- a/examples/player/main.py +++ b/examples/player/main.py @@ -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,