We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 40cc851 commit 08d2319Copy full SHA for 08d2319
sentry_sdk/__init__.py
@@ -45,7 +45,7 @@
45
"start_transaction",
46
"trace",
47
"monitor",
48
- "_experimental_logger.py",
+ "_experimental_logger",
49
]
50
51
# Initialize the debug support after everything is loaded
tests/test_import.py
@@ -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