Print license/copyright info.
(ctx: click.Context)
| 435 | @click.command("about", cls=Command, add_help_option=False) |
| 436 | @click.pass_context |
| 437 | def about_command(ctx: click.Context): |
| 438 | """Print license/copyright info.""" |
| 439 | click.echo("") |
| 440 | click.echo(click.style(LINE_SEPARATOR, fg="cyan")) |
| 441 | click.echo(click.style(f" About PySceneDetect {PROGRAM_VERSION}", fg="yellow")) |
| 442 | click.echo(click.style(LINE_SEPARATOR, fg="cyan")) |
| 443 | click.echo(ABOUT_STRING) |
| 444 | ctx.exit() |
| 445 | |
| 446 | |
| 447 | @click.command("version", cls=Command, add_help_option=False) |
nothing calls this directly
no outgoing calls
no test coverage detected