(self)
| 208 | continue |
| 209 | |
| 210 | async def _get_connection(self) -> AsyncRealtimeConnection: |
| 211 | await self.connected.wait() |
| 212 | assert self.connection is not None |
| 213 | return self.connection |
| 214 | |
| 215 | async def send_mic_audio(self) -> None: |
| 216 | import sounddevice as sd # type: ignore |
no outgoing calls
no test coverage detected