Skip to content

Commit 72f1e92

Browse files
authored
fix: functions_to_trace typing (#2141)
1 parent 396cc66 commit 72f1e92

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sentry_sdk/consts.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ def __init__(
189189
trace_propagation_targets=[ # noqa: B006
190190
MATCH_ALL
191191
], # type: Optional[Sequence[str]]
192-
functions_to_trace=[], # type: Sequence[str] # noqa: B006
192+
functions_to_trace=[], # type: Sequence[Dict[str, str]] # noqa: B006
193193
event_scrubber=None, # type: Optional[sentry_sdk.scrubber.EventScrubber]
194194
):
195195
# type: (...) -> None

0 commit comments

Comments
 (0)