From 892e4f615429ef52ad0e48390f1621415e9329c3 Mon Sep 17 00:00:00 2001 From: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Date: Wed, 12 Feb 2025 10:58:12 +0000 Subject: [PATCH] style: Fix import sorting in crew_test.py Co-Authored-By: Joe Moura --- tests/crew_test.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/tests/crew_test.py b/tests/crew_test.py index fe8a663f8..b55977f2e 100644 --- a/tests/crew_test.py +++ b/tests/crew_test.py @@ -1,14 +1,15 @@ """Test Agent creation and execution basic functionality.""" +from concurrent.futures import Future +from typing import Any +from unittest import mock +from unittest.mock import MagicMock, patch + import hashlib import instructor import json import pydantic_core import pytest -from concurrent.futures import Future -from typing import Any -from unittest import mock -from unittest.mock import MagicMock, patch from crewai.agent import Agent from crewai.agents.cache import CacheHandler