Skip to content

Commit 433f167

Browse files
committed
Improved typing [skip ci]
1 parent 33293bf commit 433f167

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/test_sqlalchemy.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ class Item(Base):
8181
id: Mapped[int] = mapped_column(Integer, primary_key=True)
8282
embedding: Mapped[list[float] | None] = mapped_column(VECTOR(3))
8383
half_embedding: Mapped[list[float] | None] = mapped_column(HALFVEC(3))
84-
binary_embedding: Mapped[Any | None] = mapped_column(BIT(3))
84+
binary_embedding: Mapped[str | None] = mapped_column(BIT(3))
8585
sparse_embedding: Mapped[SparseVector | None] = mapped_column(SPARSEVEC(3))
8686
embeddings: Mapped[list[list[float]] | None] = mapped_column(ARRAY(VECTOR(3), dimensions=1))
8787
half_embeddings: Mapped[list[list[float]] | None] = mapped_column(ARRAY(HALFVEC(3), dimensions=1))

0 commit comments

Comments
 (0)