Joselin
07/08/2019, 6:58 AMChris White
iseven
task, you are using a positional argument:
iseven.bind(res, flow=kw_flow)
you will need to refactor your IsEven
run method to accept a dictionary of keyword arguments as a named argument, like:
def run(self, kwargs):
and then call it with that keyword:
iseven.bind(kwargs=res, flow=kw_flow)
run
method that I proposed, you can continue to use a positional argumentJoselin
07/09/2019, 5:40 AMChris White
Joselin
07/10/2019, 5:53 AMChris White
Marvin
08/05/2019, 9:29 PM