Fix import order in telemetry_test.py

Co-Authored-By: Joe Moura <joao@crewai.com>
This commit is contained in:
Devin AI
2025-03-22 14:58:49 +00:00
parent e1a085b106
commit 487da2af19

View File

@@ -1,8 +1,10 @@
import os
from unittest.mock import Mock, patch
import pytest
from unittest.mock import patch, Mock
from opentelemetry.sdk.trace.export import BatchSpanProcessor
from crewai.telemetry.telemetry import Telemetry, SafeBatchSpanProcessor
from crewai.telemetry.telemetry import SafeBatchSpanProcessor, Telemetry
class TestTelemetry: