Interactive wizard for organizing clips and running the pipeline.
(
ctx: typer.Context,
path: Annotated[str, typer.Argument(help="Target path (Windows or local)")],
)
| 430 | |
| 431 | @app.command() |
| 432 | def wizard( |
| 433 | ctx: typer.Context, |
| 434 | path: Annotated[str, typer.Argument(help="Target path (Windows or local)")], |
| 435 | ) -> None: |
| 436 | """Interactive wizard for organizing clips and running the pipeline.""" |
| 437 | interactive_wizard(path, device=ctx.obj["device"]) |
| 438 | |
| 439 | |
| 440 | # --------------------------------------------------------------------------- |
nothing calls this directly
no test coverage detected