Revert "fixing linter"

This reverts commit 2eda5fdeed.
This commit is contained in:
João Moura
2024-12-27 16:22:43 -03:00
parent 5bd4fdc3d0
commit 9a55b54977
35 changed files with 55 additions and 28 deletions

View File

@@ -1,6 +1,7 @@
"""Test Agent creation and execution basic functionality."""
import pytest
from crewai.agent import Agent
from crewai.tools.agent_tools.agent_tools import AgentTools

View File

@@ -1,9 +1,10 @@
from typing import Optional
import pytest
from crewai.tools.structured_tool import CrewStructuredTool
from pydantic import BaseModel, Field
from crewai.tools.structured_tool import CrewStructuredTool
# Test fixtures
@pytest.fixture

View File

@@ -3,10 +3,11 @@ import random
from unittest.mock import MagicMock
import pytest
from pydantic import BaseModel, Field
from crewai import Agent, Task
from crewai.tools import BaseTool
from crewai.tools.tool_usage import ToolUsage
from pydantic import BaseModel, Field
class RandomNumberToolInput(BaseModel):