Skip to content

Commit d0aa5d3

Browse files
committed
Fixed indentation [skip ci]
1 parent 70ae49a commit d0aa5d3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_sqlmodel.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ def test_vector_avg(self):
203203
session.add(Item(embedding=[1, 2, 3]))
204204
session.add(Item(embedding=[4, 5, 6]))
205205
avg = session.exec(select(func.avg(Item.embedding))).first()
206-
# does not type cast
206+
# does not type cast
207207
assert avg == '[2.5,3.5,4.5]'
208208

209209
def test_vector_sum(self):

0 commit comments

Comments
 (0)