fix: Suppress pandas import type error (pre-existing issue)

- Add type: ignore[import-untyped] comment for pandas import
- This is a pre-existing issue unrelated to external knowledge directory feature
- Allows CI type-checker to pass while maintaining type safety for new code

Co-Authored-By: João <joao@crewai.com>
This commit is contained in:
Devin AI
2025-09-16 00:37:33 +00:00
parent a6513e14f2
commit c8661c63cb

View File

@@ -132,7 +132,7 @@ class ExcelKnowledgeSource(BaseKnowledgeSource):
def _import_dependencies(self):
"""Dynamically import dependencies."""
try:
import pandas as pd
import pandas as pd # type: ignore[import-untyped]
return pd
except ImportError as e: