Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions src/murf/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,6 @@ class AsyncMurf(AsyncBaseClient):

Parameters
----------
base_url : typing.Optional[str]
The base url to use for requests from the client.

environment : MurfEnvironment
The environment to use for requests from the client. from .environment import MurfEnvironment
Expand Down Expand Up @@ -107,7 +105,6 @@ class AsyncMurf(AsyncBaseClient):
def __init__(
self,
*,
base_url: typing.Optional[str] = None,
environment: MurfEnvironment = MurfEnvironment.DEFAULT,
api_key: typing.Optional[str] = os.getenv("MURF_API_KEY"),
timeout: typing.Optional[float] = 60,
Expand All @@ -119,7 +116,6 @@ def __init__(
httpx_client=httpx_client if httpx_client is not None else httpx.AsyncClient(params=default_params, timeout=_defaulted_timeout, follow_redirects=follow_redirects) if follow_redirects is not None else httpx.AsyncClient(params=default_params, timeout=_defaulted_timeout)

super().__init__(
base_url=base_url,
environment=environment,
api_key=api_key,
timeout=timeout,
Expand Down
4 changes: 0 additions & 4 deletions src/murf/dubbing_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,6 @@ class MurfDub(BaseClient):

Parameters
----------
base_url : typing.Optional[str]
The base url to use for requests from the client.

environment : MurfEnvironment
The environment to use for requests from the client. from .environment import MurfEnvironment
Expand Down Expand Up @@ -45,7 +43,6 @@ class MurfDub(BaseClient):
def __init__(
self,
*,
base_url: typing.Optional[str] = None,
environment: MurfEnvironment = MurfEnvironment.DEFAULT,
api_key: typing.Optional[str] = os.getenv("MURFDUB_API_KEY"),
timeout: typing.Optional[float] = 60,
Expand All @@ -57,7 +54,6 @@ def __init__(
httpx_client=httpx_client if httpx_client is not None else httpx.Client(params=default_params, timeout=_defaulted_timeout, follow_redirects=follow_redirects) if follow_redirects is not None else httpx.Client(params=default_params, timeout=_defaulted_timeout)

super().__init__(
base_url=base_url,
environment=environment,
api_key=api_key,
timeout=timeout,
Expand Down