Skip to content

Commit

Permalink
fix: fix mypy complaints
Browse files Browse the repository at this point in the history
  • Loading branch information
joein committed Aug 10, 2023
1 parent c3752be commit a217e43
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion qdrant_client/migrate/migrate.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
from typing import List

from qdrant_client import QdrantClient
from qdrant_client.http import models

Expand Down Expand Up @@ -31,7 +33,7 @@ def migrate(source_client: QdrantClient, dest_client: QdrantClient, batch_size:


def _compare_collections(
source_collection_names: list[str],
source_collection_names: List[str],
source_client: QdrantClient,
dest_client: QdrantClient,
) -> bool:
Expand Down

0 comments on commit a217e43

Please sign in to comment.