We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4339f3f commit 0c165afCopy full SHA for 0c165af
1 file changed
sentry_sdk/_types.py
@@ -317,21 +317,6 @@ class SDKInfo(TypedDict):
317
318
MetricProcessor = Callable[[Metric, Hint], Optional[Metric]]
319
320
- SpanSnapshot = TypedDict(
321
- "SpanSnapshot",
322
- {
323
- "trace_id": str,
324
- "span_id": str,
325
- "name": str,
326
- "status": str,
327
- "is_segment": bool,
328
- "start_timestamp": float,
329
- "end_timestamp": float,
330
- "parent_span_id": Optional[str],
331
- "attributes": Attributes,
332
- },
333
- )
334
-
335
# TODO: Make a proper type definition for this (PRs welcome!)
336
Breadcrumb = Dict[str, Any]
337
0 commit comments