From 9fd938ed8762c06a8a1d355beb79f57c199ca92c Mon Sep 17 00:00:00 2001 From: Tony Xiao Date: Tue, 20 Sep 2022 14:43:52 -0400 Subject: [PATCH] fix(profiling): Profiler mode type hints (#1633) This was missed in #1616. --- sentry_sdk/consts.py | 1 + 1 file changed, 1 insertion(+) diff --git a/sentry_sdk/consts.py b/sentry_sdk/consts.py index f335c3bc18..d7a8b9e6f7 100644 --- a/sentry_sdk/consts.py +++ b/sentry_sdk/consts.py @@ -35,6 +35,7 @@ "propagate_tracestate": Optional[bool], "custom_measurements": Optional[bool], "profiles_sample_rate": Optional[float], + "profiler_mode": Optional[str], }, total=False, )