(self, component: ComponentRef)
| 297 | return _locate_bundled_workflow(workflow_id) is not None |
| 298 | |
| 299 | def remove(self, component: ComponentRef) -> None: |
| 300 | from ... import workflow_remove |
| 301 | |
| 302 | with _chdir(self._root): |
| 303 | _delegate_command( |
| 304 | "remove", f"workflow '{component.id}'", |
| 305 | lambda: workflow_remove(component.id), |
| 306 | ) |
| 307 | |
| 308 | |
| 309 | class _StepKindManager: |
nothing calls this directly
no test coverage detected