Fix import sorting in test files

Co-Authored-By: Joe Moura <joao@crewai.com>
This commit is contained in:
Devin AI
2025-03-19 06:35:35 +00:00
parent 4a5674bc6c
commit b2a0f1052c
2 changed files with 3 additions and 2 deletions

View File

@@ -1,5 +1,5 @@
# test_fix_2402.py
from crewai import Agent, Task, Crew
from crewai import Agent, Crew, Task
# Case 1: Only system_template provided
agent1 = Agent(

View File

@@ -1,7 +1,8 @@
"""Test template handling in Agent creation."""
import pytest
from crewai import Agent, Task, Crew
from crewai import Agent, Crew, Task
def test_agent_with_only_system_template():