Skip to content

Commit 0a0e7fa

Browse files
authored
Update processor.py
1 parent 8ea28c6 commit 0a0e7fa

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • processor/opentelemetry-processor-baggage/src/opentelemetry/processor/baggage

processor/opentelemetry-processor-baggage/src/opentelemetry/processor/baggage/processor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
BaggageKeyPredicateT = Callable[[str], bool]
2424

2525
# A BaggageKeyPredicate that always returns True, allowing all baggage keys to be added to spans
26-
ALLOW_ALL_BAGGAGE_KEYS: BaggageKeyPredicateT = lambda _: True # noqa: E731
26+
ALLOW_ALL_BAGGAGE_KEYS: BaggageKeyPredicateT = lambda _: True # noqa: E731 # pylint:disable=invalid-name
2727

2828

2929
class BaggageSpanProcessor(SpanProcessor):

0 commit comments

Comments
 (0)