Skip to content

Commit

Permalink
fix import paths for beta5 (#237)
Browse files Browse the repository at this point in the history
  • Loading branch information
masci authored Jan 18, 2024
1 parent bb59cdf commit fe132f4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion integrations/qdrant/src/qdrant_haystack/document_store.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
from grpc import RpcError
from haystack import default_from_dict, default_to_dict
from haystack.dataclasses import Document
from haystack.document_stores import DuplicatePolicy
from haystack.document_stores.errors import DocumentStoreError, DuplicateDocumentError
from haystack.document_stores.types import DuplicatePolicy
from haystack.utils.filters import convert
from qdrant_client import grpc
from qdrant_client.http import models as rest
Expand Down
2 changes: 1 addition & 1 deletion integrations/qdrant/tests/test_document_store.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

import pytest
from haystack import Document
from haystack.document_stores import DuplicatePolicy
from haystack.document_stores.errors import DuplicateDocumentError
from haystack.document_stores.types import DuplicatePolicy
from haystack.testing.document_store import (
CountDocumentsTest,
DeleteDocumentsTest,
Expand Down
2 changes: 1 addition & 1 deletion integrations/qdrant/tests/test_legacy_filters.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import pytest
from haystack import Document
from haystack.document_stores import DocumentStore
from haystack.document_stores.types import DocumentStore
from haystack.testing.document_store import LegacyFilterDocumentsTest
from haystack.utils.filters import FilterError

Expand Down

0 comments on commit fe132f4

Please sign in to comment.