Skip to content

Commit 7a8b0aa

Browse files
committed
lint
1 parent b981ee4 commit 7a8b0aa

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

aws-opentelemetry-distro/src/amazon/opentelemetry/distro/_aws_metric_attribute_generator.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@
2727
extract_api_path_value,
2828
get_egress_operation,
2929
get_ingress_operation,
30+
is_aws_sdk_span,
3031
is_key_present,
3132
is_local_root,
3233
should_generate_dependency_metric_attributes,
3334
should_generate_service_metric_attributes,
34-
is_aws_sdk_span,
3535
)
3636
from amazon.opentelemetry.distro.metric_attribute_generator import (
3737
DEPENDENCY_METRIC,
@@ -269,9 +269,9 @@ def _get_db_statement_remote_operation(span: ReadableSpan, statement_key: str) -
269269

270270

271271
def _normalize_service_name(span: ReadableSpan, service_name: str) -> str:
272-
if is_aws_sdk_span(span):
272+
if is_aws_sdk_span(span):
273273
return "AWS.SDK." + service_name
274-
274+
275275
return service_name
276276

277277

0 commit comments

Comments
 (0)