Skip to content

Commit 9cc4371

Browse files
committed
fix: linting
1 parent d515c8b commit 9cc4371

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

webapp/app.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
from opentelemetry.sdk.trace import TracerProvider
3636
from opentelemetry.sdk.trace.export import BatchSpanProcessor
3737
from opentelemetry.exporter.otlp.proto.http.trace_exporter import (
38-
OTLPSpanExporter
38+
OTLPSpanExporter,
3939
)
4040
from opentelemetry.sdk.resources import Resource
4141

@@ -85,8 +85,9 @@ def create_app(testing=False):
8585

8686
# Add tracing auto instrumentation
8787
FlaskInstrumentor().instrument_app(
88-
app, excluded_urls=",".join(UNTRACED_ROUTES),
89-
request_hook=request_hook
88+
app,
89+
excluded_urls=",".join(UNTRACED_ROUTES),
90+
request_hook=request_hook,
9091
)
9192
RequestsInstrumentor().instrument()
9293

0 commit comments

Comments
 (0)