Skip to content

Commit

Permalink
remove await
Browse files Browse the repository at this point in the history
  • Loading branch information
dhirenmathur committed Oct 28, 2024
1 parent cfe01ad commit 0e025be
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ async def run(self, project_id: str, node_ids: List[str]) -> Dict[str, Any]:
Returns:
Dict[str, Any]: Neighbor data or error message.
"""
return await self.run_tool(project_id, node_ids)
return self.run_tool(project_id, node_ids)

def _get_neighbors(
self, project_id: str, node_ids: List[str]
Expand Down

0 comments on commit 0e025be

Please sign in to comment.