Skip to content

Commit

Permalink
style: explicitly export symbols instead of ignoring (getsentry#3400)
Browse files Browse the repository at this point in the history
  • Loading branch information
hartungstenio authored and arjenzorgdoc committed Sep 30, 2024
1 parent 7e48483 commit 21d7f22
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 8 deletions.
9 changes: 7 additions & 2 deletions sentry_sdk/integrations/grpc/aio/__init__.py
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",
]
12 changes: 6 additions & 6 deletions sentry_sdk/integrations/opentelemetry/__init__.py
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",
]

0 comments on commit 21d7f22

Please sign in to comment.