Skip to content

Commit 5bcde83

Browse files
committed
fix formatting
1 parent bbcc3d3 commit 5bcde83

File tree

1 file changed

+4
-1
lines changed
  • opentelemetry-instrumentation/src/opentelemetry/instrumentation

1 file changed

+4
-1
lines changed

opentelemetry-instrumentation/src/opentelemetry/instrumentation/utils.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,10 @@ def _initialize(cls):
198198
if opt_in_list:
199199
# Process http opt-in
200200
# http/dup takes priority over http
201-
if _OpenTelemetryStabilityMode.HTTP_DUP.value in opt_in_list:
201+
if (
202+
_OpenTelemetryStabilityMode.HTTP_DUP.value
203+
in opt_in_list
204+
):
202205
http_opt_in = _OpenTelemetryStabilityMode.HTTP_DUP
203206
elif _OpenTelemetryStabilityMode.HTTP.value in opt_in_list:
204207
http_opt_in = _OpenTelemetryStabilityMode.HTTP

0 commit comments

Comments
 (0)