Skip to content

Commit b21005a

Browse files
committed
fix: resolve lint issue
1 parent 4ad9eb7 commit b21005a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

deepgram/clients/agent/v1/websocket/options.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -134,10 +134,10 @@ class CartesiaVoice(BaseResponse):
134134
"""
135135

136136
mode: str = field(
137-
default=None, metadata=dataclass_config(exclude=lambda f: f is None)
137+
default="", metadata=dataclass_config(exclude=lambda f: f is None or f == "")
138138
)
139139
id: str = field(
140-
default=None, metadata=dataclass_config(exclude=lambda f: f is None)
140+
default="", metadata=dataclass_config(exclude=lambda f: f is None or f == "")
141141
)
142142

143143

0 commit comments

Comments
 (0)