(self, component: ComponentRef)
| 336 | ) |
| 337 | |
| 338 | def remove(self, component: ComponentRef) -> None: |
| 339 | from ... import workflow_step_remove |
| 340 | |
| 341 | with _chdir(self._root): |
| 342 | _delegate_command( |
| 343 | "remove", f"step '{component.id}'", |
| 344 | lambda: workflow_step_remove(component.id), |
| 345 | ) |
nothing calls this directly
no test coverage detected