Remove a deployment.
(uuid: str | None)
| 639 | @deploy.command(name="remove") |
| 640 | @click.option("-u", "--uuid", type=str, help="Crew UUID parameter") |
| 641 | def deploy_remove(uuid: str | None) -> None: |
| 642 | """Remove a deployment.""" |
| 643 | deploy_cmd = DeployCommand() |
| 644 | deploy_cmd.remove_crew(uuid=uuid) |
| 645 | |
| 646 | |
| 647 | @crewai.group() |
nothing calls this directly
no test coverage detected
searching dependent graphs…