This commit is contained in:
@@ -3,7 +3,6 @@ from librespot import util
|
||||
from librespot.crypto import Packet
|
||||
from librespot.proto import Mercury_pb2 as Mercury, Pubsub_pb2 as Pubsub
|
||||
from librespot.structure import Closeable, PacketsReceiver, SubListener
|
||||
from requests.structures import CaseInsensitiveDict
|
||||
import io
|
||||
import json
|
||||
import logging
|
||||
@@ -347,11 +346,11 @@ class RawMercuryRequest:
|
||||
return RawMercuryRequest.Builder()
|
||||
|
||||
class Builder:
|
||||
header_dict: CaseInsensitiveDict
|
||||
header_dict: dict
|
||||
payload: typing.List[bytes]
|
||||
|
||||
def __init__(self):
|
||||
self.header_dict = CaseInsensitiveDict()
|
||||
self.header_dict = {}
|
||||
self.payload = []
|
||||
|
||||
def set_uri(self, uri: str):
|
||||
|
||||
Reference in New Issue
Block a user