better indent

Signed-off-by: Jess Frazelle <github@jessfraz.com>
This commit is contained in:
Jess Frazelle
2022-02-27 21:16:28 -08:00
parent 45ac31914d
commit b09684bd9e
3 changed files with 12 additions and 12 deletions

View File

@ -68,8 +68,8 @@ def sync_detailed(
output_format: ValidOutputFileFormat,
*, client: Client) -> Response[Union[Any, FileConversion, FileConversion]]:
kwargs = _get_kwargs(
source_format=source_format,
output_format=output_format,
source_format=source_format,
output_format=output_format,
client=client,
)
@ -99,8 +99,8 @@ async def asyncio_detailed(
output_format: ValidOutputFileFormat,
*, client: Client) -> Response[Union[Any, FileConversion, FileConversion]]:
kwargs = _get_kwargs(
source_format=source_format,
output_format=output_format,
source_format=source_format,
output_format=output_format,
client=client,
)
@ -117,7 +117,7 @@ async def asyncio(
""" Convert a CAD file from one format to another. If the file being converted is larger than 30MB, it will be performed asynchronously. """
return (await asyncio_detailed(
source_format=source_format,
output_format=output_format,
source_format=source_format,
output_format=output_format,
client=client,
)).parsed