-
-
Notifications
You must be signed in to change notification settings - Fork 216
Open
Description
Is it possible, to use **kwargs
on compiled expressions?
Currently I get always error like
result = compiled_expr.run(a=a, b=b, c=c)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
ValueError: number of inputs doesn't match program
or
result = compiled_expr.run({'a': a, 'b': b, 'c': c})
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
ValueError: number of inputs doesn't match program
or
result = compiled_expr.run(**kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^
ValueError: number of inputs doesn't match program
Metadata
Metadata
Assignees
Labels
No labels