Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions sentry_sdk/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,8 @@
"start_session",
"end_session",
"set_transaction_name",
"SpanAttr",
"SpanOp",
]

# Initialize the debug support after everything is loaded
Expand Down
8 changes: 7 additions & 1 deletion sentry_sdk/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,11 @@

from sentry_sdk import tracing_utils, Client
from sentry_sdk._init_implementation import init
from sentry_sdk.consts import INSTRUMENTER
from sentry_sdk.consts import ( # noqa: N811
INSTRUMENTER,
OP as SpanOp,
SPANDATA as SpanAttr,
)
from sentry_sdk.scope import Scope, _ScopeManager, new_scope, isolation_scope
from sentry_sdk.tracing import NoOpSpan, Transaction, trace
from sentry_sdk.crons import monitor
Expand Down Expand Up @@ -85,6 +89,8 @@ def overload(x):
"start_session",
"end_session",
"set_transaction_name",
"SpanAttr",
"SpanOp",
]


Expand Down