Skip to content

Commit 490e4db

Browse files
committed
fix optional
1 parent 6232596 commit 490e4db

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

livekit-rtc/livekit/rtc/participant.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -552,9 +552,9 @@ async def set_attributes(self, attributes: dict[str, str]) -> None:
552552
async def stream_text(
553553
self,
554554
*,
555-
destination_identities: List[str] = [],
555+
destination_identities: Optional[List[str]] = None,
556556
topic: str = "",
557-
extensions: Dict[str, str] = {},
557+
extensions: Optional[Dict[str, str]] = None,
558558
reply_to_id: str | None = None,
559559
total_size: int | None = None,
560560
) -> TextStreamWriter:

0 commit comments

Comments
 (0)