Skip to content

Commit

Permalink
Fix AsyncSeesion.get verify parameter typings in overloads (#192)
Browse files Browse the repository at this point in the history
  • Loading branch information
wallseat authored Dec 25, 2024
1 parent 2b7b425 commit 48df3bc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/niquests/_async.py
Original file line number Diff line number Diff line change
Expand Up @@ -890,7 +890,7 @@ async def get(
allow_redirects: bool = ...,
proxies: ProxyType | None = ...,
hooks: HookType[PreparedRequest | Response] | None = ...,
verify: TLSVerifyType = ...,
verify: TLSVerifyType | None = ...,
stream: Literal[False] | None = ...,
cert: TLSClientCertType | None = ...,
**kwargs: typing.Any,
Expand All @@ -909,7 +909,7 @@ async def get(
allow_redirects: bool = ...,
proxies: ProxyType | None = ...,
hooks: HookType[PreparedRequest | Response] | None = ...,
verify: TLSVerifyType = ...,
verify: TLSVerifyType | None = ...,
stream: Literal[True] = ...,
cert: TLSClientCertType | None = ...,
**kwargs: typing.Any,
Expand Down

0 comments on commit 48df3bc

Please sign in to comment.