Refactor cache factory imports
This commit is contained in:
parent
1c472c359f
commit
fde3c52665
1 changed files with 4 additions and 2 deletions
|
|
@ -1,7 +1,9 @@
|
|||
from langflow.services.cache.service import InMemoryCache, RedisCache, BaseCacheService
|
||||
from typing import TYPE_CHECKING
|
||||
|
||||
from langflow.services.cache.service import (BaseCacheService, InMemoryCache,
|
||||
RedisCache)
|
||||
from langflow.services.factory import ServiceFactory
|
||||
from langflow.utils.logger import logger
|
||||
from typing import TYPE_CHECKING
|
||||
|
||||
if TYPE_CHECKING:
|
||||
from langflow.services.settings.service import SettingsService
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue