File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -575,7 +575,7 @@ def _send_request(
575
575
host : str ,
576
576
method : str ,
577
577
path : str ,
578
- headers : List [ Dict [str , str ] ],
578
+ headers : Dict [str , str ],
579
579
data : Any ,
580
580
json : Any ,
581
581
):
@@ -623,7 +623,7 @@ def request(
623
623
url : str ,
624
624
data : Optional [Any ] = None ,
625
625
json : Optional [Any ] = None ,
626
- headers : Optional [List [ Dict [str , str ] ]] = None ,
626
+ headers : Optional [Dict [str , str ]] = None ,
627
627
stream : bool = False ,
628
628
timeout : float = 60 ,
629
629
) -> Response :
@@ -793,7 +793,7 @@ def request(
793
793
url : str ,
794
794
data : Optional [Any ] = None ,
795
795
json : Optional [Any ] = None ,
796
- headers : Optional [List [ Dict [str , str ] ]] = None ,
796
+ headers : Optional [Dict [str , str ]] = None ,
797
797
stream : bool = False ,
798
798
timeout : float = 1 ,
799
799
) -> None :
You can’t perform that action at this time.
0 commit comments