@@ -32,8 +32,6 @@ class EndpointType(Enum):
32
32
from typing import Tuple
33
33
from typing_extensions import TypedDict
34
34
35
- from sentry_sdk .integrations import Integration
36
-
37
35
from sentry_sdk ._types import (
38
36
BreadcrumbProcessor ,
39
37
ContinuousProfilerMode ,
@@ -487,7 +485,7 @@ def __init__(
487
485
environment = None , # type: Optional[str]
488
486
server_name = None , # type: Optional[str]
489
487
shutdown_timeout = 2 , # type: float
490
- integrations = [], # type: Sequence[Integration] # noqa: B006
488
+ integrations = [], # type: Sequence[sentry_sdk.integrations. Integration] # noqa: B006
491
489
in_app_include = [], # type: List[str] # noqa: B006
492
490
in_app_exclude = [], # type: List[str] # noqa: B006
493
491
default_integrations = True , # type: bool
@@ -514,7 +512,7 @@ def __init__(
514
512
profiles_sampler = None , # type: Optional[TracesSampler]
515
513
profiler_mode = None , # type: Optional[ProfilerMode]
516
514
auto_enabling_integrations = True , # type: bool
517
- disabled_integrations = None , # type: Optional[Sequence[Integration]]
515
+ disabled_integrations = None , # type: Optional[Sequence[sentry_sdk.integrations. Integration]]
518
516
auto_session_tracking = True , # type: bool
519
517
send_client_reports = True , # type: bool
520
518
_experiments = {}, # type: Experiments # noqa: B006
0 commit comments