mirror of
https://github.com/crewAIInc/crewAI.git
synced 2026-04-15 07:22:44 +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
|
||||
|
||||
try:
|
||||
import lancedb
|
||||
import lancedb # type: ignore[import-untyped]
|
||||
except ImportError:
|
||||
lancedb = None # type: ignore[assignment]
|
||||
lancedb = None
|
||||
|
||||
from crewai.memory.types import MemoryRecord, ScopeInfo
|
||||
from crewai.utilities.lock_store import lock as store_lock
|
||||
|
||||
Reference in New Issue
Block a user