Skip to content

Commit fa7cf0b

Browse files
committed
remove unneeded typing
1 parent 7734089 commit fa7cf0b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

redisvl/extensions/router/semantic.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,7 @@ def _get_route_matches(
266266
) -> List[RouteMatch]:
267267
"""Get the route matches for a given vector and aggregation method."""
268268

269-
thresholds: List[float] = [route.distance_threshold for route in self.routes]
269+
thresholds = [route.distance_threshold for route in self.routes]
270270
if thresholds:
271271
distance_threshold = max(thresholds)
272272
else:

0 commit comments

Comments
 (0)