class MockedFlow: | |
def __init__(self, **kwargs): | |
self.flow_type="mocked" | |
def instantiate(cls, config): | |
return cls(**config) |
class MockedFlow: | |
def __init__(self, **kwargs): | |
self.flow_type="mocked" | |
def instantiate(cls, config): | |
return cls(**config) |