Add missing argument (#3023)

* Add missing argument

* chaneglog

* changelog
This commit is contained in:
Kar Petrosyan 2023-12-28 16:50:43 +04:00 committed by GitHub
parent 1d526a0180
commit 1a660147ed
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 0 deletions

View File

@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
## Unreleased
### Fixed
* Respect the `http1` argument while configuring proxy transports. (#3023)
## 0.26.0 (20th December, 2023)
### Added

View File

@ -1493,6 +1493,7 @@ class AsyncClient(BaseClient):
return AsyncHTTPTransport(
verify=verify,
cert=cert,
http1=http1,
http2=http2,
limits=limits,
trust_env=trust_env,