From 094e368ca4450af82c63af3534d4148c3e101c59 Mon Sep 17 00:00:00 2001 From: samson0v Date: Thu, 1 Dec 2022 11:42:07 +0200 Subject: [PATCH] Fixed download_blob_entity method --- tb_rest_client/api/api_pe/blob_entity_controller_api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tb_rest_client/api/api_pe/blob_entity_controller_api.py b/tb_rest_client/api/api_pe/blob_entity_controller_api.py index e100b794..98e30800 100644 --- a/tb_rest_client/api/api_pe/blob_entity_controller_api.py +++ b/tb_rest_client/api/api_pe/blob_entity_controller_api.py @@ -214,7 +214,7 @@ def download_blob_entity_using_get_with_http_info(self, blob_entity_id, **kwargs body=body_params, post_params=form_params, files=local_var_files, - response_type='Resource', # noqa: E501 + response_type=bytes, # noqa: E501 auth_settings=auth_settings, async_req=params.get('async_req'), _return_http_data_only=params.get('_return_http_data_only'),