From c92f90526775f987c481adb274d2a8fd75426a02 Mon Sep 17 00:00:00 2001 From: Eric Eastwood Date: Thu, 2 Oct 2025 11:32:41 -0500 Subject: [PATCH] Remove duplicate import --- tests/logging/test_opentracing.py | 8 -------- 1 file changed, 8 deletions(-) diff --git a/tests/logging/test_opentracing.py b/tests/logging/test_opentracing.py index 40e861c43d..daf5bbc454 100644 --- a/tests/logging/test_opentracing.py +++ b/tests/logging/test_opentracing.py @@ -56,14 +56,6 @@ except ImportError: jaeger_client = None # type: ignore -try: - import opentracing - - from synapse.logging.scopecontextmanager import LogContextScopeManager -except ImportError: - opentracing = None # type: ignore - LogContextScopeManager = None # type: ignore - import logging from tests.unittest import TestCase