Skip to content

Commit fa9e523

Browse files
committed
CheckStyle Fix
1 parent aa32323 commit fa9e523

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

aws-opentelemetry-distro/tests/amazon/opentelemetry/distro/test_aws_metric_attributes_span_exporter.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -327,7 +327,7 @@ def generate_metric_attribute_map_side_effect(span, resource):
327327
)
328328

329329
def __configure_mock_for_export_with_multiple_side_effect(
330-
self, span_data_mocks: [ReadableSpan], metric_attributes_list: [Attributes]
330+
self, span_data_mocks: [ReadableSpan], metric_attributes_list: [Attributes]
331331
):
332332
attributes_map_list: list = []
333333
for span in span_data_mocks:
@@ -368,6 +368,7 @@ def _build_readable_span_mock(span_attributes: Attributes) -> ReadableSpan:
368368
mock_span_data.attributes = mock_span_data._attributes
369369
return mock_span_data
370370

371+
371372
def _build_readable_span_mock_without_deepcopy_support(span_attributes: Attributes) -> ReadableSpan:
372373
class NoDeepCopyMock(MagicMock):
373374
def __deepcopy__(self, memo):
@@ -378,4 +379,4 @@ def __deepcopy__(self, memo):
378379
mock_span_data._kind = SpanKind.SERVER
379380
mock_span_data._parent = None
380381
mock_span_data.attributes = mock_span_data._attributes
381-
return mock_span_data
382+
return mock_span_data

0 commit comments

Comments
 (0)