Signed-off-by: Jess Frazelle <github@jessfraz.com>
This commit is contained in:
Jess Frazelle
2022-06-11 18:30:39 -07:00
parent 61c79305dc
commit 441db38ca2
28 changed files with 132 additions and 148 deletions

View File

@ -9,7 +9,7 @@ from ...models.file_source_format import FileSourceFormat
from ...types import Response
def _get_kwargs(
material_density: number,
material_density: float,
src_format: FileSourceFormat,
body: bytes,
*,
@ -52,7 +52,7 @@ def _build_response(*, response: httpx.Response) -> Response[Union[Any, FileMass
def sync_detailed(
material_density: number,
material_density: float,
src_format: FileSourceFormat,
body: bytes,
*,
@ -74,7 +74,7 @@ def sync_detailed(
def sync(
material_density: number,
material_density: float,
src_format: FileSourceFormat,
body: bytes,
*,
@ -92,7 +92,7 @@ If the operation is performed asynchronously, the `id` of the operation will be
async def asyncio_detailed(
material_density: number,
material_density: float,
src_format: FileSourceFormat,
body: bytes,
*,
@ -112,7 +112,7 @@ async def asyncio_detailed(
async def asyncio(
material_density: number,
material_density: float,
src_format: FileSourceFormat,
body: bytes,
*,
@ -123,9 +123,9 @@ If the operation is performed asynchronously, the `id` of the operation will be
return (
await asyncio_detailed(
material_density=material_density,
src_format=src_format,
body=body,
material_density=material_density,
src_format=src_format,
body=body,
client=client,
)
).parsed