@@ -45,8 +45,8 @@ def get_all(
4545 )
4646 """
4747 _response = self ._client_wrapper .httpx_client .request (
48- "GET" ,
49- urllib .parse .urljoin (
48+ method = "GET" ,
49+ url = urllib .parse .urljoin (
5050 f"{ self ._client_wrapper .get_base_url ()} /" , f"v1/projects/{ jsonable_encoder (project_id )} /chapters"
5151 ),
5252 params = jsonable_encoder (
@@ -102,8 +102,8 @@ def get(
102102 )
103103 """
104104 _response = self ._client_wrapper .httpx_client .request (
105- "GET" ,
106- urllib .parse .urljoin (
105+ method = "GET" ,
106+ url = urllib .parse .urljoin (
107107 f"{ self ._client_wrapper .get_base_url ()} /" ,
108108 f"v1/projects/{ jsonable_encoder (project_id )} /chapters/{ jsonable_encoder (chapter_id )} " ,
109109 ),
@@ -160,8 +160,8 @@ def delete(
160160 )
161161 """
162162 _response = self ._client_wrapper .httpx_client .request (
163- "DELETE" ,
164- urllib .parse .urljoin (
163+ method = "DELETE" ,
164+ url = urllib .parse .urljoin (
165165 f"{ self ._client_wrapper .get_base_url ()} /" ,
166166 f"v1/projects/{ jsonable_encoder (project_id )} /chapters/{ jsonable_encoder (chapter_id )} " ,
167167 ),
@@ -218,8 +218,8 @@ def convert(
218218 )
219219 """
220220 _response = self ._client_wrapper .httpx_client .request (
221- "POST" ,
222- urllib .parse .urljoin (
221+ method = "POST" ,
222+ url = urllib .parse .urljoin (
223223 f"{ self ._client_wrapper .get_base_url ()} /" ,
224224 f"v1/projects/{ jsonable_encoder (project_id )} /chapters/{ jsonable_encoder (chapter_id )} /convert" ,
225225 ),
@@ -279,8 +279,8 @@ def get_all_snapshots(
279279 )
280280 """
281281 _response = self ._client_wrapper .httpx_client .request (
282- "GET" ,
283- urllib .parse .urljoin (
282+ method = "GET" ,
283+ url = urllib .parse .urljoin (
284284 f"{ self ._client_wrapper .get_base_url ()} /" ,
285285 f"v1/projects/{ jsonable_encoder (project_id )} /chapters/{ jsonable_encoder (chapter_id )} /snapshots" ,
286286 ),
@@ -351,8 +351,8 @@ def stream_snapshot(
351351 if convert_to_mpeg is not OMIT :
352352 _request ["convert_to_mpeg" ] = convert_to_mpeg
353353 _response = self ._client_wrapper .httpx_client .request (
354- "POST" ,
355- urllib .parse .urljoin (
354+ method = "POST" ,
355+ url = urllib .parse .urljoin (
356356 f"{ self ._client_wrapper .get_base_url ()} /" ,
357357 f"v1/projects/{ jsonable_encoder (project_id )} /chapters/{ jsonable_encoder (chapter_id )} /snapshots/{ jsonable_encoder (chapter_snapshot_id )} /stream" ,
358358 ),
@@ -417,8 +417,8 @@ async def get_all(
417417 )
418418 """
419419 _response = await self ._client_wrapper .httpx_client .request (
420- "GET" ,
421- urllib .parse .urljoin (
420+ method = "GET" ,
421+ url = urllib .parse .urljoin (
422422 f"{ self ._client_wrapper .get_base_url ()} /" , f"v1/projects/{ jsonable_encoder (project_id )} /chapters"
423423 ),
424424 params = jsonable_encoder (
@@ -474,8 +474,8 @@ async def get(
474474 )
475475 """
476476 _response = await self ._client_wrapper .httpx_client .request (
477- "GET" ,
478- urllib .parse .urljoin (
477+ method = "GET" ,
478+ url = urllib .parse .urljoin (
479479 f"{ self ._client_wrapper .get_base_url ()} /" ,
480480 f"v1/projects/{ jsonable_encoder (project_id )} /chapters/{ jsonable_encoder (chapter_id )} " ,
481481 ),
@@ -532,8 +532,8 @@ async def delete(
532532 )
533533 """
534534 _response = await self ._client_wrapper .httpx_client .request (
535- "DELETE" ,
536- urllib .parse .urljoin (
535+ method = "DELETE" ,
536+ url = urllib .parse .urljoin (
537537 f"{ self ._client_wrapper .get_base_url ()} /" ,
538538 f"v1/projects/{ jsonable_encoder (project_id )} /chapters/{ jsonable_encoder (chapter_id )} " ,
539539 ),
@@ -590,8 +590,8 @@ async def convert(
590590 )
591591 """
592592 _response = await self ._client_wrapper .httpx_client .request (
593- "POST" ,
594- urllib .parse .urljoin (
593+ method = "POST" ,
594+ url = urllib .parse .urljoin (
595595 f"{ self ._client_wrapper .get_base_url ()} /" ,
596596 f"v1/projects/{ jsonable_encoder (project_id )} /chapters/{ jsonable_encoder (chapter_id )} /convert" ,
597597 ),
@@ -651,8 +651,8 @@ async def get_all_snapshots(
651651 )
652652 """
653653 _response = await self ._client_wrapper .httpx_client .request (
654- "GET" ,
655- urllib .parse .urljoin (
654+ method = "GET" ,
655+ url = urllib .parse .urljoin (
656656 f"{ self ._client_wrapper .get_base_url ()} /" ,
657657 f"v1/projects/{ jsonable_encoder (project_id )} /chapters/{ jsonable_encoder (chapter_id )} /snapshots" ,
658658 ),
@@ -723,8 +723,8 @@ async def stream_snapshot(
723723 if convert_to_mpeg is not OMIT :
724724 _request ["convert_to_mpeg" ] = convert_to_mpeg
725725 _response = await self ._client_wrapper .httpx_client .request (
726- "POST" ,
727- urllib .parse .urljoin (
726+ method = "POST" ,
727+ url = urllib .parse .urljoin (
728728 f"{ self ._client_wrapper .get_base_url ()} /" ,
729729 f"v1/projects/{ jsonable_encoder (project_id )} /chapters/{ jsonable_encoder (chapter_id )} /snapshots/{ jsonable_encoder (chapter_snapshot_id )} /stream" ,
730730 ),
0 commit comments