livekit: remove unnecessary transport cleanup() function

This commit is contained in:
Aleix Conchillo Flaqué
2025-03-20 10:06:45 -07:00
parent 5a39f146f6
commit 08956e914a

View File

@@ -599,13 +599,6 @@ class LiveKitTransport(BaseTransport):
)
await self._output.send_message(frame)
async def cleanup(self):
if self._input:
await self._input.cleanup()
if self._output:
await self._output.cleanup()
await self._client.disconnect()
async def on_room_event(self, event):
# Handle room events
pass