Skip to content

Commit 97a4776

Browse files
Removed BaseUrl
2 parents a8a3995 + 5becdcf commit 97a4776

File tree

2 files changed

+0
-8
lines changed

2 files changed

+0
-8
lines changed

src/murf/client.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@ class Murf(BaseClient):
1111
1212
Parameters
1313
----------
14-
base_url : typing.Optional[str]
15-
The base url to use for requests from the client.
1614
1715
environment : MurfEnvironment
1816
The environment to use for requests from the client. from .environment import MurfEnvironment
@@ -45,7 +43,6 @@ class Murf(BaseClient):
4543
def __init__(
4644
self,
4745
*,
48-
base_url: typing.Optional[str] = None,
4946
environment: MurfEnvironment = MurfEnvironment.DEFAULT,
5047
api_key: typing.Optional[str] = os.getenv("MURF_API_KEY"),
5148
timeout: typing.Optional[float] = 60,
@@ -57,7 +54,6 @@ def __init__(
5754
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)
5855

5956
super().__init__(
60-
base_url=base_url,
6157
environment=environment,
6258
api_key=api_key,
6359
timeout=timeout,

src/murf/dubbing_client.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,6 @@ class AsyncMurfDub(AsyncBaseClient):
6969
7070
Parameters
7171
----------
72-
base_url : typing.Optional[str]
73-
The base url to use for requests from the client.
7472
7573
environment : MurfEnvironment
7674
The environment to use for requests from the client. from .environment import MurfEnvironment
@@ -103,7 +101,6 @@ class AsyncMurfDub(AsyncBaseClient):
103101
def __init__(
104102
self,
105103
*,
106-
base_url: typing.Optional[str] = None,
107104
environment: MurfEnvironment = MurfEnvironment.DEFAULT,
108105
api_key: typing.Optional[str] = os.getenv("MURFDUB_API_KEY"),
109106
timeout: typing.Optional[float] = 60,
@@ -115,7 +112,6 @@ def __init__(
115112
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)
116113

117114
super().__init__(
118-
base_url=base_url,
119115
environment=environment,
120116
api_key=api_key,
121117
timeout=timeout,

0 commit comments

Comments
 (0)