Skip to content

Commit 08d2319

Browse files
authoredMar 17, 2025··
Fix import problem in release 2.23.0 (#4140)
Fixes #4139
1 parent 40cc851 commit 08d2319

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed
 

Diff for: ‎sentry_sdk/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
"start_transaction",
4646
"trace",
4747
"monitor",
48-
"_experimental_logger.py",
48+
"_experimental_logger",
4949
]
5050

5151
# Initialize the debug support after everything is loaded

Diff for: ‎tests/test_import.py

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# As long as this file can be imported, we are good.
2+
from sentry_sdk import * # noqa: F403, F401
3+
4+
5+
def test_import():
6+
# As long as this file can be imported, we are good.
7+
assert True

0 commit comments

Comments
 (0)
Please sign in to comment.