Merge "Fix async reserved word in python3.7"

This commit is contained in:
Zuul 2019-02-28 17:03:18 +00:00 committed by Gerrit Code Review
commit 57a3b73fa0
1 changed files with 3 additions and 5 deletions

View File

@ -45,10 +45,10 @@ class ApiClient(api_client.ApiClient):
def call_api(self, resource_path, method,
path_params=None, query_params=None, header_params=None,
body=None, post_params=None, files=None, async=None,
response_type=None, auth_settings=None, async_req=None,
body=None, post_params=None, files=None,
response_type=None, auth_settings=None,
_return_http_data_only=None, collection_formats=None,
_preload_content=True, _request_timeout=None):
_preload_content=True, _request_timeout=None, **kwargs):
"""Makes http request (synchronous) and return the deserialized data
:param resource_path: Path to method endpoint.
@ -64,8 +64,6 @@ class ApiClient(api_client.ApiClient):
:param response: Response data type.
:param files dict: key -> filename, value -> filepath,
for `multipart/form-data`.
:param async bool: to be compatible with k8s-client before 7.0.0
:param async_req bool: execute request asynchronously
:param _return_http_data_only: response data without head status code
and headers
:param collection_formats: dict of collection formats for path, query,