From 247cd9b268747ee379ece2923b0dd073e1b7d8ae Mon Sep 17 00:00:00 2001
From: Siraj R Aizlewood <siraj@aurelio.ai>
Date: Tue, 2 Apr 2024 23:59:12 +0400
Subject: [PATCH] Linting.

---
 semantic_router/layer.py | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/semantic_router/layer.py b/semantic_router/layer.py
index c4a471df..8c01e5b6 100644
--- a/semantic_router/layer.py
+++ b/semantic_router/layer.py
@@ -292,9 +292,7 @@ class RouteLayer:
         for category, score in categories_with_scores:
             route = self.check_for_matching_routes(category)
             if route:
-                route_choice = RouteChoice(
-                    name=route.name, similarity_score=score
-                )
+                route_choice = RouteChoice(name=route.name, similarity_score=score)
                 route_choices.append(route_choice)
 
         return route_choices
-- 
GitLab