Skip to content

Commit e8168fe

Browse files
committed
Linting
1 parent 712eb5b commit e8168fe

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

sentry_sdk/consts.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,6 @@ class CompressionAlgo(Enum):
5353
TransactionProcessor,
5454
MetricTags,
5555
MetricValue,
56-
LogProcessor,
5756
)
5857

5958
# Experiments are feature flags to enable and disable certain unstable SDK

tests/test_logs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ def test_logs_tied_to_spans(sentry_init, capture_envelopes):
217217
sentry_init(_experiments={"enable_sentry_logs": True})
218218
envelopes = capture_envelopes()
219219

220-
with sentry_sdk.start_transaction(name="test-transaction") as trx:
220+
with sentry_sdk.start_transaction(name="test-transaction"):
221221
with sentry_sdk.start_span(description="test-span") as span:
222222
sentry_logger.warn("This is a log tied to a span")
223223

0 commit comments

Comments
 (0)