Restyled by isort

This commit is contained in:
Restyled.io
2021-05-22 01:26:35 +00:00
parent 544c57ff1f
commit adb111fa8b
32 changed files with 100 additions and 105 deletions

View File

@@ -1,16 +1,19 @@
from __future__ import annotations
from librespot.common import Utils
from librespot.core import Session, PacketsReceiver
from librespot.crypto import Packet
from librespot.mercury import JsonMercuryRequest, RawMercuryRequest, SubListener
from librespot.standard import BytesInputStream, BytesOutputStream, Closeable
from librespot.proto import Mercury, Pubsub
import json
import logging
import queue
import threading
import typing
from librespot.common import Utils
from librespot.core import PacketsReceiver, Session
from librespot.crypto import Packet
from librespot.mercury import (JsonMercuryRequest, RawMercuryRequest,
SubListener)
from librespot.proto import Mercury, Pubsub
from librespot.standard import BytesInputStream, BytesOutputStream, Closeable
class MercuryClient(PacketsReceiver.PacketsReceiver, Closeable):
_LOGGER: logging = logging.getLogger(__name__)

View File

@@ -1,6 +1,7 @@
from librespot.proto import Mercury
import typing
from librespot.proto import Mercury
class RawMercuryRequest:
header: Mercury.Header