From 64ab7554b15d0f04ba78d93fe55e796510ea8c92 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Sun, 15 Mar 2026 07:21:37 +0000 Subject: [PATCH] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- studio/backend/models/models.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/studio/backend/models/models.py b/studio/backend/models/models.py index 3f1ba70e3e..cd42f06a43 100644 --- a/studio/backend/models/models.py +++ b/studio/backend/models/models.py @@ -129,7 +129,9 @@ class GgufVariantDetail(BaseModel): ) quant: str = Field(..., description = "Quantization label (e.g., 'Q4_K_M')") size_bytes: int = Field(0, description = "File size in bytes") - downloaded: bool = Field(False, description = "Whether this variant is already in the local HF cache") + downloaded: bool = Field( + False, description = "Whether this variant is already in the local HF cache" + ) class GgufVariantsResponse(BaseModel):