We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8ea28c6 commit 0a0e7faCopy full SHA for 0a0e7fa
1 file changed
processor/opentelemetry-processor-baggage/src/opentelemetry/processor/baggage/processor.py
@@ -23,7 +23,7 @@
23
BaggageKeyPredicateT = Callable[[str], bool]
24
25
# 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
+ALLOW_ALL_BAGGAGE_KEYS: BaggageKeyPredicateT = lambda _: True # noqa: E731 # pylint:disable=invalid-name
27
28
29
class BaggageSpanProcessor(SpanProcessor):
0 commit comments