Skip to content

Commit fc2d250

Browse files
style: explicitly export symbols instead of ignoring (#3400)
1 parent 17a6cf0 commit fc2d250

File tree

2 files changed

+13
-8
lines changed

2 files changed

+13
-8
lines changed
Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,7 @@
1-
from .server import ServerInterceptor # noqa: F401
2-
from .client import ClientInterceptor # noqa: F401
1+
from .server import ServerInterceptor
2+
from .client import ClientInterceptor
3+
4+
__all__ = [
5+
"ClientInterceptor",
6+
"ServerInterceptor",
7+
]
Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
from sentry_sdk.integrations.opentelemetry.span_processor import ( # noqa: F401
2-
SentrySpanProcessor,
3-
)
1+
from sentry_sdk.integrations.opentelemetry.span_processor import SentrySpanProcessor
2+
from sentry_sdk.integrations.opentelemetry.propagator import SentryPropagator
43

5-
from sentry_sdk.integrations.opentelemetry.propagator import ( # noqa: F401
6-
SentryPropagator,
7-
)
4+
__all__ = [
5+
"SentryPropagator",
6+
"SentrySpanProcessor",
7+
]

0 commit comments

Comments
 (0)