Restyled by isort
This commit is contained in:
@@ -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__)
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
from librespot.proto import Mercury
|
||||
import typing
|
||||
|
||||
from librespot.proto import Mercury
|
||||
|
||||
|
||||
class RawMercuryRequest:
|
||||
header: Mercury.Header
|
||||
|
||||
Reference in New Issue
Block a user