File tree Expand file tree Collapse file tree
integrations/qdrant/src/haystack_integrations/document_stores/qdrant Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -272,8 +272,8 @@ def _initialize_client(self) -> None:
272272 # For in-memory stores: if the async client was already initialised,
273273 # share its underlying collections dict so both clients see the same data.
274274 if self .location == ":memory:" and self ._async_client is not None :
275- self ._client ._client .collections = self ._async_client ._client .collections
276- self ._client ._client .aliases = self ._async_client ._client .aliases
275+ self ._client ._client .collections = self ._async_client ._client .collections # type: ignore[attr-defined]
276+ self ._client ._client .aliases = self ._async_client ._client .aliases # type: ignore[attr-defined]
277277 return
278278 # Make sure the collection is properly set up
279279 self ._set_up_collection (
You can’t perform that action at this time.
0 commit comments