From 6be27be8d2b6b3fdf0fa23159a43a4d4d441efff Mon Sep 17 00:00:00 2001 From: Marcus Olsson <8396880+marcusolsson@users.noreply.github.com> Date: Thu, 20 Mar 2025 17:37:19 +0100 Subject: [PATCH] fix(sdk/python): fix default value for pydantic type --- assemblyai/types.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/assemblyai/types.py b/assemblyai/types.py index 8767201..f93e406 100644 --- a/assemblyai/types.py +++ b/assemblyai/types.py @@ -1823,10 +1823,9 @@ class ListTranscriptParameters(BaseModel): throttled_only: Annotated[ Optional[bool], Field( - default=None, deprecated="`throttled_only` is deprecated and will be removed in a future release.", ), - ] + ] = None "Get only throttled transcripts, overrides the status filter" model_config = ConfigDict(use_enum_values=True)