From ff1b2565d42749a9e7dd6725cd2d3008f95c54f0 Mon Sep 17 00:00:00 2001 From: Munir Abdinur Date: Thu, 27 Jan 2022 10:20:48 -0500 Subject: [PATCH] fix(ci): flake8 error introduced by merge conflict --- ddtrace/filters.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ddtrace/filters.py b/ddtrace/filters.py index 638f12ec61e..a30d3862504 100644 --- a/ddtrace/filters.py +++ b/ddtrace/filters.py @@ -80,4 +80,4 @@ def process_trace(self, trace): return trace local_root = trace[0]._local_root - return trace if local_root and local_root.span_type == SpanTypes.TEST.value else None + return trace if local_root and local_root.span_type == SpanTypes.TEST else None