(
ctx: click.Context,
filename: str | None,
output: str | None,
disable_shift: bool | None,
)
| 1687 | ) |
| 1688 | @click.pass_context |
| 1689 | def save_qp_command( |
| 1690 | ctx: click.Context, |
| 1691 | filename: str | None, |
| 1692 | output: str | None, |
| 1693 | disable_shift: bool | None, |
| 1694 | ): |
| 1695 | ctx = ctx.obj |
| 1696 | assert isinstance(ctx, CliContext) |
| 1697 | |
| 1698 | save_qp_args = { |
| 1699 | "filename": ctx.config.get_value("save-qp", "filename", filename), |
| 1700 | "output": ctx.config.get_value("save-qp", "output", output), |
| 1701 | "disable_shift": ctx.config.get_value("save-qp", "disable-shift", disable_shift), |
| 1702 | } |
| 1703 | ctx.add_command(cli_commands.save_qp, save_qp_args) |
| 1704 | |
| 1705 | |
| 1706 | SAVE_FCP_HELP = """Save cuts in Final Cut Pro XML format (FCP7 xmeml or FCPX).""" |
nothing calls this directly
no test coverage detected