Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 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: 1 addition & 1 deletion sentry_sdk/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
"start_transaction",
"trace",
"monitor",
"_experimental_logger.py",
"_experimental_logger",
]

# Initialize the debug support after everything is loaded
Expand Down
9 changes: 9 additions & 0 deletions tests/test_import.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@

# As long as this file can be imported, we are good.
from sentry_sdk import *


def test_import():
# As long as this file can be imported, we are good.
assert True

Loading