diff --git a/src/vector_store/__init__.py b/src/vector_store/__init__.py index 85fdd9ff..17eeec34 100644 --- a/src/vector_store/__init__.py +++ b/src/vector_store/__init__.py @@ -207,10 +207,10 @@ def _create_store_by_type(store_type: str) -> VectorStore: except ImportError as exc: raise RuntimeError( "VECTOR_STORE.TYPE is set to 'lancedb', but the 'lancedb' package " - "is not installed (for example on macOS Intel, where it is omitted " - "from dependencies because PyPI has no wheel). " - "Use TYPE 'pgvector' or 'turbopuffer', or install lancedb manually. " - f"Original import error: {exc}" + + "is not installed (for example on macOS Intel, where it is omitted " + + "from dependencies because PyPI has no wheel). " + + "Use TYPE 'pgvector' or 'turbopuffer', or install lancedb manually. " + + f"Original import error: {exc}" ) from exc return LanceDBVectorStore() diff --git a/tests/test_cache_redaction.py b/tests/test_cache_redaction.py index 0ff2bbc7..3a8e6891 100644 --- a/tests/test_cache_redaction.py +++ b/tests/test_cache_redaction.py @@ -2,7 +2,7 @@ import pytest -from src.cache.client import _redact_cache_url +from src.cache.client import _redact_cache_url # pyright: ignore[reportPrivateUsage] class TestRedactCacheUrl: