Skip to content

Commit 1fad1b6

Browse files
committed
fix
1 parent bbbb288 commit 1fad1b6

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

src/elevenlabs/client.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -58,9 +58,9 @@ def __init__(
5858
timeout=timeout,
5959
httpx_client=httpx_client
6060
)
61-
self.text_to_speech = RealtimeTextToSpeechClient(client_wrapper=self._client_wrapper)
62-
self.webhooks = WebhooksClient(client_wrapper=self._client_wrapper)
63-
self.music = MusicClient(client_wrapper=self._client_wrapper)
61+
self._text_to_speech = RealtimeTextToSpeechClient(client_wrapper=self._client_wrapper)
62+
self._webhooks = WebhooksClient(client_wrapper=self._client_wrapper)
63+
self._music = MusicClient(client_wrapper=self._client_wrapper)
6464

6565

6666
class AsyncElevenLabs(AsyncBaseElevenLabs):
@@ -103,5 +103,5 @@ def __init__(
103103
timeout=timeout,
104104
httpx_client=httpx_client
105105
)
106-
self.webhooks = AsyncWebhooksClient(client_wrapper=self._client_wrapper)
107-
self.music = AsyncMusicClient(client_wrapper=self._client_wrapper)
106+
self._webhooks = AsyncWebhooksClient(client_wrapper=self._client_wrapper)
107+
self._music = AsyncMusicClient(client_wrapper=self._client_wrapper)

0 commit comments

Comments
 (0)