Skip to content

Commit 923d9c3

Browse files
committed
textstream info should not inherit from typeddict
1 parent 0e6291a commit 923d9c3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

livekit-rtc/livekit/rtc/data_stream.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
import datetime
2020
from collections.abc import Callable
2121
from dataclasses import dataclass
22-
from typing import AsyncIterator, Optional, TypedDict, Dict, List
22+
from typing import AsyncIterator, Optional, Dict, List
2323
from ._proto.room_pb2 import DataStream as proto_DataStream
2424
from ._proto import ffi_pb2 as proto_ffi
2525
from ._proto import room_pb2 as proto_room
@@ -35,7 +35,7 @@
3535

3636

3737
@dataclass
38-
class BaseStreamInfo(TypedDict):
38+
class BaseStreamInfo:
3939
stream_id: str
4040
mime_type: str
4141
topic: str

0 commit comments

Comments
 (0)