From 7bfec6e5e7ec4a575116ac755d124e186db68bde Mon Sep 17 00:00:00 2001 From: Sachin Iyer Date: Mon, 3 Nov 2025 17:43:36 -0800 Subject: [PATCH] fix: typo in time sandboxed utilities --- temporalio/worker/workflow_sandbox/_restrictions.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/temporalio/worker/workflow_sandbox/_restrictions.py b/temporalio/worker/workflow_sandbox/_restrictions.py index 0896595a1..3343cd630 100644 --- a/temporalio/worker/workflow_sandbox/_restrictions.py +++ b/temporalio/worker/workflow_sandbox/_restrictions.py @@ -785,7 +785,8 @@ def _public_callables(parent: Any, *, exclude: Set[str] = set()) -> Set[str]: "monotonic", "monotonic_ns", "perf_counter", - "perf_counter_ns" "process_time", + "perf_counter_ns", + "process_time", "process_time_ns", "sleep", "time",