update download_timeout descriptor to seconds, which is what is actua… (#3648)

This commit is contained in:
Jonathan Dobson
2025-10-08 14:22:53 -04:00
committed by GitHub
parent 16736686df
commit a61ff4cb4f

View File

@@ -115,7 +115,7 @@ class TaskBase(BaseModel):
)
download_timeout: float | None = Field(
default=None,
description="The maximum time to wait for downloads to complete, in minutes. If not set, defaults to BROWSER_DOWNLOAD_TIMEOUT minutes.",
description="The maximum time to wait for downloads to complete, in seconds. If not set, defaults to BROWSER_DOWNLOAD_TIMEOUT seconds.",
examples=[15.0],
)