We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0f0fae0 commit 1948cf0Copy full SHA for 1948cf0
sentry_sdk/_types.py
@@ -220,7 +220,9 @@ class SDKInfo(TypedDict):
220
tuple[None, None, None],
221
]
222
223
+ # TODO: Make a proper type definition for this
224
Hint = Dict[str, Any]
225
+
226
Log = TypedDict(
227
"Log",
228
{
@@ -233,9 +235,13 @@ class SDKInfo(TypedDict):
233
235
},
234
236
)
237
238
239
Breadcrumb = Dict[str, Any]
240
241
242
BreadcrumbHint = Dict[str, Any]
243
244
245
SamplingContext = Dict[str, Any]
246
247
EventProcessor = Callable[[Event, Hint], Optional[Event]]
0 commit comments