(
ctx: click.Context,
filename: str | None,
format: str | None,
output: str | None,
)
| 1736 | ) |
| 1737 | @click.pass_context |
| 1738 | def save_fcp_command( |
| 1739 | ctx: click.Context, |
| 1740 | filename: str | None, |
| 1741 | format: str | None, |
| 1742 | output: str | None, |
| 1743 | ): |
| 1744 | ctx = ctx.obj |
| 1745 | assert isinstance(ctx, CliContext) |
| 1746 | |
| 1747 | save_fcp_args = { |
| 1748 | "filename": ctx.config.get_value("save-fcp", "filename", filename), |
| 1749 | "format": ctx.config.get_value("save-fcp", "format", format), |
| 1750 | "output": ctx.config.get_value("save-fcp", "output", output), |
| 1751 | } |
| 1752 | ctx.add_command(cli_commands.save_fcp, save_fcp_args) |
| 1753 | |
| 1754 | |
| 1755 | SAVE_OTIO_HELP = """Save cuts as an OTIO timeline. |
nothing calls this directly
no test coverage detected