Skip to content

Commit 4c38989

Browse files
author
Yusuke Tsutsumi
committed
fixing formatting.
1 parent 1a3dc75 commit 4c38989

File tree

1 file changed

+3
-1
lines changed
  • ext/opentelemetry-ext-wsgi/src/opentelemetry/ext/wsgi

1 file changed

+3
-1
lines changed

ext/opentelemetry-ext-wsgi/src/opentelemetry/ext/wsgi/__init__.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,9 @@ def __call__(self, environ, start_response):
8787
path_info = environ["PATH_INFO"] or "/"
8888
parent_span = propagators.extract(get_header_from_environ, environ)
8989

90-
with tracer.start_span(path_info, parent_span, kind=trace.SpanKind.SERVER) as span:
90+
with tracer.start_span(
91+
path_info, parent_span, kind=trace.SpanKind.SERVER
92+
) as span:
9193
self._add_request_attributes(span, environ)
9294
start_response = self._create_start_response(span, start_response)
9395

0 commit comments

Comments
 (0)