Skip to content

Commit

Permalink
clean up imports
Browse files Browse the repository at this point in the history
  • Loading branch information
Moishe committed Mar 18, 2024
1 parent 8e61fe8 commit 58726dc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 3 additions & 0 deletions src/dailyai/pipeline/frames.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 0 additions & 1 deletion src/dailyai/services/base_transport_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
from dailyai.pipeline.frame_processor import FrameProcessor

from dailyai.pipeline.frames import (
ReceivedAppMessageFrame,
SendAppMessageFrame,
AudioFrame,
EndFrame,
Expand Down

0 comments on commit 58726dc

Please sign in to comment.