Skip to content

Commit

Permalink
fix: add missing parameters from session request (#298)
Browse files Browse the repository at this point in the history
  • Loading branch information
douo committed Apr 23, 2024
1 parent 9e68666 commit 22375f6
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions curl_cffi/requests/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,10 @@ def request(
http_version: Optional[CurlHttpVersion] = None,
debug: bool = False,
interface: Optional[str] = None,
multipart: Optional[CurlMime] = None,
cert: Optional[Union[str, Tuple[str, str]]] = None,
stream: bool = False,
max_recv_speed: int = 0,
multipart: Optional[CurlMime] = None,
) -> Response:
"""Send an http request.
Expand Down Expand Up @@ -132,8 +134,10 @@ def request(
default_encoding=default_encoding,
http_version=http_version,
interface=interface,
multipart=multipart,
cert=cert,
stream=stream,
max_recv_speed=max_recv_speed,
multipart=multipart,
)


Expand Down

0 comments on commit 22375f6

Please sign in to comment.