🔥 refactor(base.py): remove unused import statement

The import statement for cache_utils in base.py was not being used and has been removed.
This commit is contained in:
Gabriel Luiz Freitas Almeida 2023-06-21 10:29:36 -03:00
commit c26ecd3bda
2 changed files with 1 additions and 2 deletions

View file

@ -62,7 +62,7 @@ class BaseCache(abc.ABC):
Args:
key: The key of the item to retrieve.
"""
@abc.abstractmethod
def __setitem__(self, key, value):

View file

@ -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