1
vote
0answers
79 views

Lazy parameter binding in Python

I tried to design a workflow using composite pattern, the sample codes looks like this: class CommandInterface(object): def __init__(self, name, template=None, tool=None, param : ...