Skip to content

Commit 7774922

Browse files
authored
opentelemetry-processor-baggage: silence ruff warning (open-telemetry#2653)
1 parent 9021148 commit 7774922

File tree

1 file changed

+1
-1
lines changed
  • processor/opentelemetry-processor-baggage/src/opentelemetry/processor/baggage

1 file changed

+1
-1
lines changed

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
26+
ALLOW_ALL_BAGGAGE_KEYS: BaggageKeyPredicateT = lambda _: True # noqa: E731
2727

2828

2929
class BaggageSpanProcessor(SpanProcessor):

0 commit comments

Comments
 (0)