From f096c8770c166f1a28da14eeba01ac77eb49fc07 Mon Sep 17 00:00:00 2001 From: prestonrasmussen Date: Thu, 15 May 2025 10:12:31 -0400 Subject: [PATCH] remove unused import --- graphiti_core/helpers.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/graphiti_core/helpers.py b/graphiti_core/helpers.py index 92fb0b4b..7c6175d4 100644 --- a/graphiti_core/helpers.py +++ b/graphiti_core/helpers.py @@ -18,7 +18,6 @@ import asyncio import os from collections.abc import Coroutine from datetime import datetime -from typing import Any import numpy as np from dotenv import load_dotenv @@ -88,8 +87,8 @@ def normalize_l2(embedding: list[float]) -> NDArray: # Use this instead of asyncio.gather() to bound coroutines async def semaphore_gather( - *coroutines: Coroutine, - max_coroutines: int = SEMAPHORE_LIMIT, + *coroutines: Coroutine, + max_coroutines: int = SEMAPHORE_LIMIT, ): semaphore = asyncio.Semaphore(max_coroutines)