Skip to content

Commit c1c6bc5

Browse files
Apply suggestion from @misrasaurabh1
1 parent f681575 commit c1c6bc5

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

sentry_sdk/tracing_utils.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -567,9 +567,7 @@ def _fill_sample_rand(self):
567567
)
568568
return
569569

570-
self.dynamic_sampling_context["sample_rand"] = (
571-
f"{sample_rand:.6f}" # noqa: E231
572-
)
570+
self.dynamic_sampling_context["sample_rand"] = f"{sample_rand:.6f}" # noqa: E231
573571

574572
def _sample_rand(self):
575573
# type: () -> Optional[str]

0 commit comments

Comments
 (0)