File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 22.mypy_cache
33.pytest_cache
44__pycache__
5+ .vscode
56dist
67docs /_build
78venv
Original file line number Diff line number Diff line change @@ -622,7 +622,7 @@ def generate_code(self) -> str:
622622 elif len (self .returns ) > 1 :
623623 doc += '\n '
624624 doc += ':returns: A tuple with the following items:\n \n '
625- ret_docs = '\n ' .join (f'{ i } . **{ r .name } ** – { r .generate_doc ()} ' for i , r
625+ ret_docs = '\n ' .join (f'{ i } . **{ r .name } ** - { r .generate_doc ()} ' for i , r
626626 in enumerate (self .returns ))
627627 doc += indent (ret_docs , 4 )
628628 if doc :
Original file line number Diff line number Diff line change @@ -550,9 +550,9 @@ def get_encoded_response(
550550 :param size_only: *(Optional)* Whether to only return the size information (defaults to false).
551551 :returns: A tuple with the following items:
552552
553- 0. **body** – *(Optional)* The encoded body as a base64 string. Omitted if sizeOnly is true.
554- 1. **originalSize** – Size before re-encoding.
555- 2. **encodedSize** – Size after re-encoding.
553+ 0. **body** - *(Optional)* The encoded body as a base64 string. Omitted if sizeOnly is true.
554+ 1. **originalSize** - Size before re-encoding.
555+ 2. **encodedSize** - Size after re-encoding.
556556 '''
557557 params: T_JSON_DICT = dict()
558558 params['requestId'] = request_id.to_json()
You can’t perform that action at this time.
0 commit comments