Skip to content

Commit a8a3995

Browse files
Removed baseUrl
2 parents a1cb820 + 02e956e commit a8a3995

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
@@ -73,8 +73,6 @@ class AsyncMurf(AsyncBaseClient):
7373
7474
Parameters
7575
----------
76-
base_url : typing.Optional[str]
77-
The base url to use for requests from the client.
7876
7977
environment : MurfEnvironment
8078
The environment to use for requests from the client. from .environment import MurfEnvironment
@@ -107,7 +105,6 @@ class AsyncMurf(AsyncBaseClient):
107105
def __init__(
108106
self,
109107
*,
110-
base_url: typing.Optional[str] = None,
111108
environment: MurfEnvironment = MurfEnvironment.DEFAULT,
112109
api_key: typing.Optional[str] = os.getenv("MURF_API_KEY"),
113110
timeout: typing.Optional[float] = 60,
@@ -119,7 +116,6 @@ def __init__(
119116
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)
120117

121118
super().__init__(
122-
base_url=base_url,
123119
environment=environment,
124120
api_key=api_key,
125121
timeout=timeout,

src/murf/dubbing_client.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@ class MurfDub(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 MurfDub(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("MURFDUB_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,

0 commit comments

Comments
 (0)