Skip to content
This repository was archived by the owner on Jan 5, 2024. It is now read-only.

Commit d2a8371

Browse files
committed
Making the linter happy
1 parent c685e1a commit d2a8371

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tchannel/tracing.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,8 @@ def span_in_context(self, span):
9797
:param span: an OpenTracing Span
9898
:return: ``StackContext``-based context manager
9999
"""
100-
if isinstance(opentracing.tracer.scope_manager, opentracing_instrumentation.request_context.TornadoScopeManager):
100+
if isinstance(opentracing.tracer.scope_manager,
101+
opentracing_instrumentation.request_context.TornadoScopeManager): # noqa
101102
return opentracing_instrumentation.span_in_stack_context(span)
102103

103104
return opentracing_instrumentation.span_in_context(span)

0 commit comments

Comments
 (0)