chore: removing unused var

This commit is contained in:
hajdul88 2025-08-28 17:08:40 +02:00
parent 96a32dfc67
commit 90faf22dd0

View file

@ -93,8 +93,6 @@ class TemporalRetriever(GraphCompletionRetriever):
events_with_scores.sort(key=itemgetter("score"))
top_events = events_with_scores[: self.top_k]
return events_with_scores[: self.top_k]
async def get_context(self, query: str) -> Any: