clean up imports

This commit is contained in:
Moishe Lettvin
2024-03-18 10:14:51 -04:00
parent 8e61fe8e36
commit 58726dc20d
2 changed files with 3 additions and 1 deletions

View File

@@ -109,6 +109,9 @@ class SendAppMessageFrame(Frame):
message: Any
participantId: str | None
def __str__(self):
return f"SendAppMessageFrame: participantId: {self.participantId}, message: {self.message}"
class UserStartedSpeakingFrame(Frame):
pass

View File

@@ -13,7 +13,6 @@ from enum import Enum
from dailyai.pipeline.frame_processor import FrameProcessor
from dailyai.pipeline.frames import (
ReceivedAppMessageFrame,
SendAppMessageFrame,
AudioFrame,
EndFrame,