We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a05321c commit 59e177bCopy full SHA for 59e177b
lagrange/pb/highway/comm.py
@@ -35,8 +35,8 @@ class AudioExtInfo(ProtoStruct):
35
36
class ExtBizInfo(ProtoStruct):
37
pic: PicExtInfo = proto_field(1, default_factory=PicExtInfo)
38
- video: VideoExtInfo = proto_field(2, default_factory=VideoExtInfo)
39
- audio: AudioExtInfo = proto_field(3, default_factory=AudioExtInfo)
+ video: Optional[VideoExtInfo] = proto_field(2, default_factory=VideoExtInfo)
+ audio: Optional[AudioExtInfo] = proto_field(3, default_factory=AudioExtInfo)
40
bus_type: Optional[int] = proto_field(4, default=None)
41
42
0 commit comments