diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 1f4a614..48f696f 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -19,7 +19,6 @@ jobs: - "3.11" - "3.10" - "3.9" - - "3.8" os: - ubuntu-22.04 steps: 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)