Skip to content

Commit

Permalink
Fix sphinx circular import bs
Browse files Browse the repository at this point in the history
  • Loading branch information
sl0thentr0py committed Jul 29, 2024
1 parent fa9a887 commit 1d6420c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
6 changes: 2 additions & 4 deletions sentry_sdk/consts.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,6 @@ class EndpointType(Enum):
from typing import Tuple
from typing_extensions import TypedDict

from sentry_sdk.integrations import Integration

from sentry_sdk._types import (
BreadcrumbProcessor,
ContinuousProfilerMode,
Expand Down Expand Up @@ -487,7 +485,7 @@ def __init__(
environment=None, # type: Optional[str]
server_name=None, # type: Optional[str]
shutdown_timeout=2, # type: float
integrations=[], # type: Sequence[Integration] # noqa: B006
integrations=[], # type: Sequence[sentry_sdk.integrations.Integration] # noqa: B006
in_app_include=[], # type: List[str] # noqa: B006
in_app_exclude=[], # type: List[str] # noqa: B006
default_integrations=True, # type: bool
Expand All @@ -514,7 +512,7 @@ def __init__(
profiles_sampler=None, # type: Optional[TracesSampler]
profiler_mode=None, # type: Optional[ProfilerMode]
auto_enabling_integrations=True, # type: bool
disabled_integrations=None, # type: Optional[Sequence[Integration]]
disabled_integrations=None, # type: Optional[Sequence[sentry_sdk.integrations.Integration]]
auto_session_tracking=True, # type: bool
send_client_reports=True, # type: bool
_experiments={}, # type: Experiments # noqa: B006
Expand Down
1 change: 0 additions & 1 deletion sentry_sdk/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@

from gevent.hub import Hub

import sentry_sdk.integrations
from sentry_sdk._types import Event, ExcInfo

P = ParamSpec("P")
Expand Down

0 comments on commit 1d6420c

Please sign in to comment.