diff --git a/src/modules/Elsa.Python/Handlers/GenerateWorkflowVariableAccessors.cs b/src/modules/Elsa.Python/Handlers/GenerateWorkflowVariableAccessors.cs index 4301a7814..1ee0dc362 100644 --- a/src/modules/Elsa.Python/Handlers/GenerateWorkflowVariableAccessors.cs +++ b/src/modules/Elsa.Python/Handlers/GenerateWorkflowVariableAccessors.cs @@ -23,6 +23,12 @@ public class GenerateWorkflowVariableAccessors : INotificationHandler public object? GetVariable(string name) => ExpressionExecutionContext.GetVariableInScope(name).ConvertTo(); + + /// + /// Gets the value of the specified variable. + /// + public object? GetVariable(string name) => ExpressionExecutionContext.GetVariableInScope(name); /// /// Sets the value of the specified variable.