forked from getsentry/sentry-python
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
style: explicitly export symbols instead of ignoring (getsentry#3400)
- Loading branch information
1 parent
7e48483
commit 21d7f22
Showing
2 changed files
with
13 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,7 @@ | ||
from .server import ServerInterceptor # noqa: F401 | ||
from .client import ClientInterceptor # noqa: F401 | ||
from .server import ServerInterceptor | ||
from .client import ClientInterceptor | ||
|
||
__all__ = [ | ||
"ClientInterceptor", | ||
"ServerInterceptor", | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
from sentry_sdk.integrations.opentelemetry.span_processor import ( # noqa: F401 | ||
SentrySpanProcessor, | ||
) | ||
from sentry_sdk.integrations.opentelemetry.span_processor import SentrySpanProcessor | ||
from sentry_sdk.integrations.opentelemetry.propagator import SentryPropagator | ||
|
||
from sentry_sdk.integrations.opentelemetry.propagator import ( # noqa: F401 | ||
SentryPropagator, | ||
) | ||
__all__ = [ | ||
"SentryPropagator", | ||
"SentrySpanProcessor", | ||
] |