@@ -46,7 +46,6 @@ class Fileforge:
4646
4747
4848
49- api_key : str
5049 api_key : str
5150 timeout : typing.Optional[float]
5251 The timeout to be used, in seconds, for requests by default the timeout is 60 seconds, unless a custom httpx client is used, in which case a default is not set.
@@ -63,7 +62,6 @@ class Fileforge:
6362
6463 client = Fileforge(
6564 api_key="YOUR_API_KEY",
66- api_key="YOUR_API_KEY",
6765 )
6866 """
6967
@@ -73,7 +71,6 @@ def __init__(
7371 base_url : typing .Optional [str ] = None ,
7472 environment : FileforgeEnvironment = FileforgeEnvironment .DEFAULT ,
7573 api_key : str ,
76- api_key : str ,
7774 timeout : typing .Optional [float ] = None ,
7875 follow_redirects : typing .Optional [bool ] = True ,
7976 httpx_client : typing .Optional [httpx .Client ] = None ,
@@ -82,7 +79,6 @@ def __init__(
8279 self ._client_wrapper = SyncClientWrapper (
8380 base_url = _get_base_url (base_url = base_url , environment = environment ),
8481 api_key = api_key ,
85- api_key = api_key ,
8682 httpx_client = httpx_client
8783 if httpx_client is not None
8884 else httpx .Client (timeout = _defaulted_timeout , follow_redirects = follow_redirects )
@@ -108,7 +104,6 @@ def retrieve_server_status(self, *, request_options: typing.Optional[RequestOpti
108104
109105 client = Fileforge(
110106 api_key="YOUR_API_KEY",
111- api_key="YOUR_API_KEY",
112107 )
113108 client.retrieve_server_status()
114109 """
@@ -212,7 +207,6 @@ def convert_docx(
212207
213208 client = Fileforge(
214209 api_key="YOUR_API_KEY",
215- api_key="YOUR_API_KEY",
216210 )
217211 client.convert_docx()
218212 """
@@ -294,7 +288,6 @@ def generate(
294288
295289 client = Fileforge(
296290 api_key="YOUR_API_KEY",
297- api_key="YOUR_API_KEY",
298291 )
299292 client.generate()
300293 """
@@ -375,7 +368,6 @@ def merge(
375368
376369 client = Fileforge(
377370 api_key="YOUR_API_KEY",
378- api_key="YOUR_API_KEY",
379371 )
380372 client.merge()
381373 """
@@ -444,7 +436,6 @@ class AsyncFileforge:
444436
445437
446438
447- api_key : str
448439 api_key : str
449440 timeout : typing.Optional[float]
450441 The timeout to be used, in seconds, for requests by default the timeout is 60 seconds, unless a custom httpx client is used, in which case a default is not set.
@@ -461,7 +452,6 @@ class AsyncFileforge:
461452
462453 client = AsyncFileforge(
463454 api_key="YOUR_API_KEY",
464- api_key="YOUR_API_KEY",
465455 )
466456 """
467457
@@ -471,7 +461,6 @@ def __init__(
471461 base_url : typing .Optional [str ] = None ,
472462 environment : FileforgeEnvironment = FileforgeEnvironment .DEFAULT ,
473463 api_key : str ,
474- api_key : str ,
475464 timeout : typing .Optional [float ] = None ,
476465 follow_redirects : typing .Optional [bool ] = True ,
477466 httpx_client : typing .Optional [httpx .AsyncClient ] = None ,
@@ -480,7 +469,6 @@ def __init__(
480469 self ._client_wrapper = AsyncClientWrapper (
481470 base_url = _get_base_url (base_url = base_url , environment = environment ),
482471 api_key = api_key ,
483- api_key = api_key ,
484472 httpx_client = httpx_client
485473 if httpx_client is not None
486474 else httpx .AsyncClient (timeout = _defaulted_timeout , follow_redirects = follow_redirects )
@@ -506,7 +494,6 @@ async def retrieve_server_status(self, *, request_options: typing.Optional[Reque
506494
507495 client = AsyncFileforge(
508496 api_key="YOUR_API_KEY",
509- api_key="YOUR_API_KEY",
510497 )
511498 await client.retrieve_server_status()
512499 """
@@ -610,7 +597,6 @@ async def convert_docx(
610597
611598 client = AsyncFileforge(
612599 api_key="YOUR_API_KEY",
613- api_key="YOUR_API_KEY",
614600 )
615601 await client.convert_docx()
616602 """
@@ -692,7 +678,6 @@ async def generate(
692678
693679 client = AsyncFileforge(
694680 api_key="YOUR_API_KEY",
695- api_key="YOUR_API_KEY",
696681 )
697682 await client.generate()
698683 """
@@ -773,7 +758,6 @@ async def merge(
773758
774759 client = AsyncFileforge(
775760 api_key="YOUR_API_KEY",
776- api_key="YOUR_API_KEY",
777761 )
778762 await client.merge()
779763 """
0 commit comments