Skip to content

Commit 1e9bd14

Browse files
author
ADOT Patch workflow
committed
Checkstyle fix
1 parent 98c2441 commit 1e9bd14

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ def test_trace_id_ratio_sampler(self):
4242
num_spans: int = 10000
4343
num_sampled: int = 0
4444
tracer: Tracer = self.tracer_provider.get_tracer("test")
45-
for i in range(num_spans):
45+
for _ in range(num_spans):
4646
span: Span = tracer.start_span("test")
4747
if span.get_span_context().trace_flags.sampled:
4848
num_sampled += 1

0 commit comments

Comments
 (0)