Skip to content

Commit

Permalink
services(cartesia): fix string formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
aconchillo committed Sep 26, 2024
1 parent b1818cc commit f5e0b94
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/pipecat/services/cartesia.py
Original file line number Diff line number Diff line change
Expand Up @@ -180,8 +180,7 @@ async def cancel(self, frame: CancelFrame):
async def _connect(self):
try:
self._websocket = await websockets.connect(
f"{self._url}?api_key={self._api_key}&cartesia_version={
self._cartesia_version}"
f"{self._url}?api_key={self._api_key}&cartesia_version={self._cartesia_version}"
)
self._receive_task = self.get_event_loop().create_task(self._receive_task_handler())
except Exception as e:
Expand Down

0 comments on commit f5e0b94

Please sign in to comment.