mirror of
https://github.com/crewAIInc/crewAI.git
synced 2026-01-09 08:08:32 +00:00
Fix linting issues in test file
Co-Authored-By: Joe Moura <joao@crewai.com>
This commit is contained in:
@@ -1,11 +1,13 @@
|
|||||||
import pytest
|
import pytest
|
||||||
from unittest.mock import patch, MagicMock
|
|
||||||
from crewai import Agent, Task, Crew, Flow
|
|
||||||
from crewai.flow import start, listen
|
|
||||||
from crewai.tools import BaseTool
|
|
||||||
from typing import Type
|
from typing import Type
|
||||||
|
from unittest.mock import MagicMock, patch
|
||||||
|
|
||||||
from pydantic import BaseModel, Field
|
from pydantic import BaseModel, Field
|
||||||
|
|
||||||
|
from crewai import Agent, Crew, Flow, Task
|
||||||
|
from crewai.flow import listen, start
|
||||||
|
from crewai.tools import BaseTool
|
||||||
|
|
||||||
class TestToolInput(BaseModel):
|
class TestToolInput(BaseModel):
|
||||||
query: str = Field(..., description='Query to process')
|
query: str = Field(..., description='Query to process')
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user