From 6a045ee48fbc2e0ec09d2ce3360ccfa74d09b4fc Mon Sep 17 00:00:00 2001 From: Harshit Jain Date: Wed, 28 Jan 2026 08:36:51 +0530 Subject: [PATCH] fix lint errors mypy --- litellm/integrations/langfuse/langfuse_otel.py | 9 --------- 1 file changed, 9 deletions(-) diff --git a/litellm/integrations/langfuse/langfuse_otel.py b/litellm/integrations/langfuse/langfuse_otel.py index 6380c3c7b6..8955d3619f 100644 --- a/litellm/integrations/langfuse/langfuse_otel.py +++ b/litellm/integrations/langfuse/langfuse_otel.py @@ -17,17 +17,8 @@ from litellm.types.utils import StandardCallbackDynamicParams if TYPE_CHECKING: from opentelemetry.trace import Span as _Span - from litellm.integrations.opentelemetry import ( - OpenTelemetryConfig as _OpenTelemetryConfig, - ) - from litellm.types.integrations.arize import Protocol as _Protocol - - Protocol = _Protocol - OpenTelemetryConfig = _OpenTelemetryConfig Span = Union[_Span, Any] else: - Protocol = Any - OpenTelemetryConfig = Any Span = Any