Skip to content

Commit

Permalink
refactoring: fix timeout type, remove redundant import
Browse files Browse the repository at this point in the history
  • Loading branch information
joein committed Aug 9, 2024
1 parent 7233b87 commit e4610b8
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions tests/test_async_qdrant_client.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import asyncio
import os
import random
import time

Expand Down Expand Up @@ -35,7 +34,7 @@ async def test_async_grpc():
for idx in range(NUM_VECTORS)
)

client = QdrantClient(prefer_grpc=True, timeout=3.0)
client = QdrantClient(prefer_grpc=True, timeout=3)

grpc_collections = client.async_grpc_collections

Expand Down

0 comments on commit e4610b8

Please sign in to comment.