Skip to content

chore: Reexport module profiler #4535

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
6 changes: 4 additions & 2 deletions sentry_sdk/__init__.py
Original file line number Diff line number Diff line change
@@ -1,17 +1,18 @@
from sentry_sdk import integrations, logger, profiler
from sentry_sdk.scope import Scope
from sentry_sdk.transport import Transport, HttpTransport
from sentry_sdk.client import Client

from sentry_sdk.api import * # noqa

from sentry_sdk.consts import VERSION # noqa
from sentry_sdk.consts import VERSION

__all__ = [ # noqa
"Hub",
"Scope",
"Client",
"Transport",
"HttpTransport",
"VERSION",
"integrations",
# From sentry_sdk.api
"init",
Expand Down Expand Up @@ -47,6 +48,7 @@
"trace",
"monitor",
"logger",
"profiler",
"start_session",
"end_session",
]
Expand Down