Skip to content

Commit a47d899

Browse files
committed
Merge remote-tracking branch 'origin/main'
2 parents caafc5b + 8580822 commit a47d899

File tree

1 file changed

+1
-1
lines changed
  • src/openapi_python_generator/language_converters/python/templates

1 file changed

+1
-1
lines changed

src/openapi_python_generator/language_converters/python/templates/httpx.jinja2

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
query_params = {key:value for (key,value) in query_params.items() if value is not None}
1919

2020
{% if async_client %}
21-
async with httpx.AsyncClient(base_url=base_path, verify=APIConfig.verify) as client:
21+
async with httpx.AsyncClient(base_url=base_path, verify=api_config.verify) as client:
2222
response = await client.request(
2323
{% else %}
2424
with httpx.Client(base_url=base_path, verify=api_config.verify) as client:

0 commit comments

Comments
 (0)