From e3f50725b8809ec7d1c77e01c5946154c5c4d7b4 Mon Sep 17 00:00:00 2001 From: "deepsource-autofix[bot]" <62050782+deepsource-autofix[bot]@users.noreply.github.com> Date: Sat, 24 Apr 2021 23:57:30 +0000 Subject: [PATCH] Format code with yapf This commit fixes the style issues introduced in 2b40b47 according to the output from yapf. Details: https://deepsource.io/gh/kokarare1212/librespot-python/transform/4370f54c-a381-41c5-9e2a-449638c44abe/ --- librespot/core/Session.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/librespot/core/Session.py b/librespot/core/Session.py index bb5a4d4..d763a96 100644 --- a/librespot/core/Session.py +++ b/librespot/core/Session.py @@ -852,7 +852,8 @@ class Session(Closeable, SubListener, DealerClient.MessageListener): class SpotifyAuthenticationException(Exception): def __init__(self, login_failed: Keyexchange.APLoginFailed): - super().__init__(Keyexchange.ErrorCode.Name(login_failed.error_code)) + super().__init__( + Keyexchange.ErrorCode.Name(login_failed.error_code)) class Accumulator: buffer: bytes = bytes()