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/
This commit is contained in:
deepsource-autofix[bot] 2021-04-24 23:57:30 +00:00 committed by GitHub
parent 2b40b47992
commit e3f50725b8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -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()