From 72f1e921ab130992bc41c4b087cd7c0791c71aa9 Mon Sep 17 00:00:00 2001 From: Rick Marron Date: Thu, 25 May 2023 08:42:23 -0400 Subject: [PATCH] fix: functions_to_trace typing (#2141) --- sentry_sdk/consts.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sentry_sdk/consts.py b/sentry_sdk/consts.py index 18c888fa3b..bb5f79eb39 100644 --- a/sentry_sdk/consts.py +++ b/sentry_sdk/consts.py @@ -189,7 +189,7 @@ def __init__( trace_propagation_targets=[ # noqa: B006 MATCH_ALL ], # type: Optional[Sequence[str]] - functions_to_trace=[], # type: Sequence[str] # noqa: B006 + functions_to_trace=[], # type: Sequence[Dict[str, str]] # noqa: B006 event_scrubber=None, # type: Optional[sentry_sdk.scrubber.EventScrubber] ): # type: (...) -> None