-
-
Notifications
You must be signed in to change notification settings - Fork 79
Open
Description
In the constructor for a ParameterizedFunction, all of the values at the current point in time are copied. Unfortunately, this doesn't copy over references.
Is your feature request related to a problem? Please describe.
It's frustrating that I need to add back in all the different previous parameters back.
Describe the solution you'd like
I'd like to copy over references, or add a flag to copy them.
Describe alternatives you've considered
def instance(fn, **kwargs):
params = fn.param.objects()
params.update(**kwargs)
return obj.instance(**params)Maybe we could make an option to the instance method/
Metadata
Metadata
Assignees
Labels
No labels