Format code with yapf

This commit fixes the style issues introduced in e787514 according to the output
from yapf.

Details: https://deepsource.io/gh/kokarare1212/librespot-python/transform/6b6b51b6-8693-477f-9456-739e2136ae57/
This commit is contained in:
deepsource-autofix[bot]
2021-09-12 09:41:07 +00:00
committed by GitHub
parent e7875145ad
commit cd04e9d9bb
2 changed files with 6 additions and 5 deletions

View File

@@ -269,8 +269,7 @@ class MercuryClient(Closeable, PacketsReceiver):
payload: bytes
status_code: int
def __init__(self, header: Mercury.Header,
payload: list[bytes]):
def __init__(self, header: Mercury.Header, payload: list[bytes]):
self.uri = header.uri
self.status_code = header.status_code
self.payload = b"".join(payload[1:])