feat: add type ignore

This commit is contained in:
Eduardo Chiarotti
2025-03-26 10:07:35 -03:00
parent fbd9d832ef
commit 7c5160bc92

View File

@@ -119,8 +119,8 @@ class ToolUsage:
if (
isinstance(tool, CrewStructuredTool)
and tool.name == self._i18n.tools("add_image")["name"]
): # type: ignore
and tool.name == self._i18n.tools("add_image")["name"] # type: ignore
):
try:
result = self._use(tool_string=tool_string, tool=tool, calling=calling)
return result