(self,commands=None)
| 94 | |
| 95 | """ |
| 96 | def __init__(self,commands=None): |
| 97 | if commands is None: |
| 98 | self.chain = [] |
| 99 | else: |
| 100 | self.chain = commands |
| 101 | |
| 102 | |
| 103 | def __call__(self,*args, **kw): |
nothing calls this directly
no outgoing calls
no test coverage detected