From d84e5f38a302c0f1d26ceccc71f64f45ba1f7239 Mon Sep 17 00:00:00 2001 From: "deepsource-autofix[bot]" <62050782+deepsource-autofix[bot]@users.noreply.github.com> Date: Wed, 20 Oct 2021 22:00:45 +0000 Subject: [PATCH] Format code with yapf This commit fixes the style issues introduced in 3c2db24 according to the output from yapf. Details: https://deepsource.io/gh/kokarare1212/librespot-python/transform/1772140d-dcbe-46ec-86d6-ba7db3aa7180/ --- librespot/audio/__init__.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/librespot/audio/__init__.py b/librespot/audio/__init__.py index 498ca7f..874a330 100644 --- a/librespot/audio/__init__.py +++ b/librespot/audio/__init__.py @@ -777,7 +777,8 @@ class PlayableContentFeeder: file = audio_quality_picker.get_file(track.file) if file is None: self.logger.fatal( - "Couldn't find any suitable audio file, available: {}".format(track.file)) + "Couldn't find any suitable audio file, available: {}".format( + track.file)) raise return self.load_stream(file, track, None, preload, halt_listener)