mirror of
https://github.com/crewAIInc/crewAI.git
synced 2026-05-01 07:13:00 +00:00
fix: correct type: ignore comments for mypy - keep import-untyped, remove unused assignment ignore
Co-Authored-By: João <joao@crewai.com>
This commit is contained in:
@@ -13,9 +13,9 @@ import time
|
|||||||
from typing import Any
|
from typing import Any
|
||||||
|
|
||||||
try:
|
try:
|
||||||
import lancedb
|
import lancedb # type: ignore[import-untyped]
|
||||||
except ImportError:
|
except ImportError:
|
||||||
lancedb = None # type: ignore[assignment]
|
lancedb = None
|
||||||
|
|
||||||
from crewai.memory.types import MemoryRecord, ScopeInfo
|
from crewai.memory.types import MemoryRecord, ScopeInfo
|
||||||
from crewai.utilities.lock_store import lock as store_lock
|
from crewai.utilities.lock_store import lock as store_lock
|
||||||
|
|||||||
Reference in New Issue
Block a user