Skip to content

Commit 76b4536

Browse files
authored
fix(sdk/python): fix default value for pydantic type (#111)
1 parent 81b7a01 commit 76b4536

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

assemblyai/types.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -1823,10 +1823,9 @@ class ListTranscriptParameters(BaseModel):
18231823
throttled_only: Annotated[
18241824
Optional[bool],
18251825
Field(
1826-
default=None,
18271826
deprecated="`throttled_only` is deprecated and will be removed in a future release.",
18281827
),
1829-
]
1828+
] = None
18301829
"Get only throttled transcripts, overrides the status filter"
18311830

18321831
model_config = ConfigDict(use_enum_values=True)

0 commit comments

Comments
 (0)