feat(qdrant): ruff fixes and rules (#32500)

This commit is contained in:
Mason Daugherty
2025-08-11 12:43:41 -04:00
committed by GitHub
parent 9b3f3dc8d9
commit 374f414c91
26 changed files with 1659 additions and 1489 deletions

View File

@@ -5,9 +5,7 @@ from pydantic import BaseModel, Field
class SparseVector(BaseModel, extra="forbid"):
"""
Sparse vector structure
"""
"""Sparse vector structure."""
indices: list[int] = Field(..., description="indices must be unique")
values: list[float] = Field(