From 6aead63aeb001107a5ba801d7d2b0c5ab43aa274 Mon Sep 17 00:00:00 2001
From: James Briggs <35938317+jamescalam@users.noreply.github.com>
Date: Mon, 13 Jan 2025 09:04:55 +0000
Subject: [PATCH] chore: hybrid lint

---
 semantic_router/routers/hybrid.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/semantic_router/routers/hybrid.py b/semantic_router/routers/hybrid.py
index 9a0eaf54..94ef33a3 100644
--- a/semantic_router/routers/hybrid.py
+++ b/semantic_router/routers/hybrid.py
@@ -307,7 +307,7 @@ class HybridRouter(BaseRouter):
         Xq_s: List[SparseEmbedding] = []
         for i in tqdm(range(0, len(X), batch_size), desc="Generating embeddings"):
             emb_d = np.array(self.encoder(X[i : i + batch_size]))
-            # TODO JB: for some reason the sparse encoder is receiving a tuple 
+            # TODO JB: for some reason the sparse encoder is receiving a tuple
             # like `("Hello",)`
             emb_s = self.sparse_encoder(X[i : i + batch_size])
             Xq_d.extend(emb_d)
-- 
GitLab