Skip to content

Commit 17b9b63

Browse files
committed
ignore pylint
Signed-off-by: emdneto <[email protected]>
1 parent 8422e8f commit 17b9b63

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

opentelemetry-sdk/benchmarks/test_baggage.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# pylint: disable=redefined-outer-name, invalid-name
12
import pytest
23

34
from opentelemetry import trace
@@ -17,10 +18,10 @@ def baggage_size(request):
1718
return request.param
1819

1920

20-
def set_baggage_operation(baggage_size=10):
21+
def set_baggage_operation(size=10):
2122
with tracer.start_span(name="root span"):
2223
ctx = get_all()
23-
for i in range(baggage_size):
24+
for i in range(size):
2425
ctx = set_baggage(f"foo{i}", f"bar{i}", context=ctx)
2526
return ctx
2627

0 commit comments

Comments
 (0)