Method
__init__
(
self,
workflow_type: str = "inference",
config_file: str | None = None,
properties_path: str | None = None,
meta_file: str | None = None,
)
Source from the content-addressed store, hash-verified
| 185 | """ |
| 186 | |
| 187 | def __init__( |
| 188 | self, |
| 189 | workflow_type: str = "inference", |
| 190 | config_file: str | None = None, |
| 191 | properties_path: str | None = None, |
| 192 | meta_file: str | None = None, |
| 193 | ): |
| 194 | super().__init__( |
| 195 | workflow_type=workflow_type, properties_path=properties_path, config_file=config_file, meta_file=meta_file |
| 196 | ) |
| 197 | self.dataflow: dict = {} |
| 198 | |
| 199 | def initialize(self): |
| 200 | self._props_vals = {} |
Callers
nothing calls this directly
Tested by
no test coverage detected