From 1b096167f44d50520b377e49905e2c7a78425698 Mon Sep 17 00:00:00 2001 From: Hyu Date: Mon, 13 Jul 2026 00:17:51 +0800 Subject: [PATCH] style: format valkey error message --- src/langbot/pkg/vector/vdbs/valkey_search.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/langbot/pkg/vector/vdbs/valkey_search.py b/src/langbot/pkg/vector/vdbs/valkey_search.py index c40f970be..66be43664 100644 --- a/src/langbot/pkg/vector/vdbs/valkey_search.py +++ b/src/langbot/pkg/vector/vdbs/valkey_search.py @@ -119,7 +119,7 @@ class ValkeySearchVectorDatabase(VectorDatabase): def __init__(self, ap: app.Application): if not VALKEY_SEARCH_AVAILABLE: raise ImportError( - "valkey-glide is not installed or is unavailable on this platform. " + 'valkey-glide is not installed or is unavailable on this platform. ' "On Linux or macOS, install it with: pip install 'valkey-glide>=2.4.1,<3.0.0'" )