You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
How about adding type checking on workflow_execute activity when a variable number of positional args exist in the callable activity?
Right now the args are not type checked, Sequence[Any] is allowed in
Describe the solution you'd like
Use TypedVarTupe to define *args, delete the arg input.
Additional context
I got this working with this code which would go in the workflow module