Fran Sanchez
05/20/2020, 11:43 PMcontext
or do I need to use *args
or **kwargs
?dagster.core.errors.DagsterInvalidDefinitionError: @solid 'console_out' decorated function has parameter 'inputs' that is not one of the solid input_defs. Solid functions should only have keyword arguments that match input names and a first positional parameter named 'context'.
alex
05/21/2020, 12:29 AM**kwargs
is the way to goFran Sanchez
05/21/2020, 5:14 PM