From bdc090e56328b1a8cbfed51c09887b0dda0f6b48 Mon Sep 17 00:00:00 2001 From: "deepsource-autofix[bot]" <62050782+deepsource-autofix[bot]@users.noreply.github.com> Date: Wed, 20 Oct 2021 12:15:06 +0000 Subject: [PATCH] Format code with yapf This commit fixes the style issues introduced in 9c35e63 according to the output from yapf. Details: https://deepsource.io/gh/kokarare1212/librespot-python/transform/ba63481c-00f8-4a04-aaf3-cf434dc75352/ --- librespot/audio/decoders.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/librespot/audio/decoders.py b/librespot/audio/decoders.py index 2982227..7d309a9 100644 --- a/librespot/audio/decoders.py +++ b/librespot/audio/decoders.py @@ -67,7 +67,8 @@ class VorbisOnlyAudioQuality(AudioQualityPicker): if vorbis is not None: self.logger.warning( "Using {} because preferred {} couldn't be found.".format( - Metadata.AudioFile.Format.Name(vorbis.format), self.preferred)) + Metadata.AudioFile.Format.Name(vorbis.format), + self.preferred)) else: self.logger.fatal( "Couldn't find any Vorbis file, available: {}")