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

@ -59,7 +59,7 @@ def sync_detailed(
id: str,
*, client: Client) -> Response[Union[Any, FileConversion]]:
kwargs = _get_kwargs(
id=id,
id=id,
client=client,
)
@ -86,7 +86,7 @@ async def asyncio_detailed(
id: str,
*, client: Client) -> Response[Union[Any, FileConversion]]:
kwargs = _get_kwargs(
id=id,
id=id,
client=client,
)
@ -102,6 +102,6 @@ async def asyncio(
""" Get the status and output of an async file conversion. """
return (await asyncio_detailed(
id=id,
id=id,
client=client,
)).parsed