From dfca6ffb5c8ef54e3c938612d9fe18466d318652 Mon Sep 17 00:00:00 2001 From: fivetran-ryanrapp Date: Sun, 19 Jul 2026 11:43:17 -0700 Subject: [PATCH] Fix anonymous block parameter in Workflow::Future RBI --- temporalio/rbi/temporalio/workflow/future.rbi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/temporalio/rbi/temporalio/workflow/future.rbi b/temporalio/rbi/temporalio/workflow/future.rbi index e9f96348..875724dc 100644 --- a/temporalio/rbi/temporalio/workflow/future.rbi +++ b/temporalio/rbi/temporalio/workflow/future.rbi @@ -13,7 +13,7 @@ class Temporalio::Workflow::Future attr_reader :failure sig { params(block: T.nilable(T.proc.returns(Elem))).void } - def initialize(&); end + def initialize(&block); end sig { returns(T::Boolean) } def done?; end