Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 6be27be

Browse files
committedMar 20, 2025··
fix(sdk/python): fix default value for pydantic type
1 parent 81b7a01 commit 6be27be

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)
Please sign in to comment.