Skip to content

Commit 3e72ff7

Browse files
committed
Updated docs
1 parent 000d1e5 commit 3e72ff7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

manticoresearch/api/utils_api.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ def __init__(self, api_client=None) -> None:
4343
def sql(
4444
self,
4545
body: Annotated[StrictStr, Field(description="A query parameter string. ")],
46-
raw_response: Annotated[Optional[StrictBool], Field(description="Optional parameter, defines a format of response. Can be set to `False` for Select only queries and set to `True` for any type of queries. Default value is 'True'. ")] = None,
47-
mode: Annotated[Optional[StrictStr], Field(description="Optional parameter, defines a format of response. Can be set to empty for Select only queries and set to `raw` for any type of queries. Default value is 'raw'. ")] = None,
46+
raw_response: Annotated[Optional[StrictBool], Field(description="Optional parameter, defines a format of response. Can be set to `False` for Select only queries and set to `True` for any type of queries. Default value is 'True'. ")] = True,
47+
mode: Annotated[Optional[StrictStr], Field(description="Optional parameter, defines a format of response. Can be set to empty for Select only queries and set to `raw` for any type of queries. Default value is 'raw'. ")] = 'raw',
4848
_request_timeout: Union[
4949
None,
5050
Annotated[StrictFloat, Field(gt=0)],

0 commit comments

Comments
 (0)