mirror of
https://github.com/lilydjwg/nvchecker.git
synced 2025-03-10 06:14:02 +00:00
httpx: allow_redirects becomes follow_redirects
This commit is contained in:
parent
b8b6e47d59
commit
91cbed1f8e
1 changed files with 1 additions and 1 deletions
|
@ -49,7 +49,7 @@ class HttpxSession(BaseSession):
|
||||||
r = await client.request(
|
r = await client.request(
|
||||||
method, url, json = json, content = body,
|
method, url, json = json, content = body,
|
||||||
headers = headers,
|
headers = headers,
|
||||||
allow_redirects = follow_redirects,
|
follow_redirects = follow_redirects,
|
||||||
params = params,
|
params = params,
|
||||||
)
|
)
|
||||||
err_cls: Optional[type] = None
|
err_cls: Optional[type] = None
|
||||||
|
|
Loading…
Add table
Reference in a new issue