We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cc76bbb commit 7436a3dCopy full SHA for 7436a3d
1 file changed
sentry_sdk/_types.py
@@ -145,7 +145,7 @@ def substituted_because_contains_sensitive_data(cls) -> "AnnotatedValue":
145
146
from typing_extensions import Literal, TypedDict
147
148
- from sentry_sdk.traces import StreamedSpan
+ import sentry_sdk
149
150
class SDKInfo(TypedDict):
151
name: str
@@ -332,7 +332,7 @@ class SDKInfo(TypedDict):
332
"start_timestamp": float,
333
"end_timestamp": NotRequired[float],
334
"attributes": NotRequired[Attributes],
335
- "_segment_span": NotRequired[StreamedSpan],
+ "_segment_span": NotRequired["sentry_sdk.traces.StreamedSpan"],
336
},
337
)
338
0 commit comments