Skip to content

Commit 35b3a56

Browse files
SDK regenerated by CI server [ci skip]
1 parent f2689b6 commit 35b3a56

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

asposewordscloud/models/requests/convert_document_request.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -67,10 +67,6 @@ def create_http_request(self, api_client):
6767

6868
path = '/v4.0/words/convert'
6969
path_params = {}
70-
if self.out_path is not None:
71-
path_params['outPath'] = self.out_path # noqa: E501
72-
else:
73-
path_params['outPath'] = '' # noqa: E501
7470

7571
# path parameters
7672
collection_formats = {}
@@ -90,6 +86,8 @@ def create_http_request(self, api_client):
9086
query_params = []
9187
if self.format is not None:
9288
query_params.append(('format', self.format)) # noqa: E501
89+
if self.out_path is not None:
90+
query_params.append(('outPath', self.out_path)) # noqa: E501
9391
if self.file_name_field_value is not None:
9492
query_params.append(('fileNameFieldValue', self.file_name_field_value)) # noqa: E501
9593
if self.storage is not None:

0 commit comments

Comments
 (0)