From c26ecd3bda890d8ccba0b2936f1e263e2c11f428 Mon Sep 17 00:00:00 2001 From: Gabriel Luiz Freitas Almeida Date: Wed, 21 Jun 2023 10:29:36 -0300 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A5=20refactor(base.py):=20remove=20un?= =?UTF-8?q?used=20import=20statement=20The=20import=20statement=20for=20ca?= =?UTF-8?q?che=5Futils=20in=20base.py=20was=20not=20being=20used=20and=20h?= =?UTF-8?q?as=20been=20removed.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/backend/langflow/cache/base.py | 2 +- src/backend/langflow/graph/vertex/base.py | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/src/backend/langflow/cache/base.py b/src/backend/langflow/cache/base.py index a5cb8a797..88cb3a1da 100644 --- a/src/backend/langflow/cache/base.py +++ b/src/backend/langflow/cache/base.py @@ -62,7 +62,7 @@ class BaseCache(abc.ABC): Args: key: The key of the item to retrieve. - + """ @abc.abstractmethod def __setitem__(self, key, value): diff --git a/src/backend/langflow/graph/vertex/base.py b/src/backend/langflow/graph/vertex/base.py index d7bd82fa7..a86e51d25 100644 --- a/src/backend/langflow/graph/vertex/base.py +++ b/src/backend/langflow/graph/vertex/base.py @@ -1,4 +1,3 @@ -from langflow.cache import utils as cache_utils from langflow.graph.vertex.constants import DIRECT_TYPES from langflow.interface import loading from langflow.interface.listing import ALL_TYPES_DICT