chore(cli): fix and improve help messages (#191)

A very small PR to fix an error in an help message, and improve the verbosity one.
This commit is contained in:
Jérome Eertmans
2023-05-23 10:42:23 +02:00
committed by GitHub
parent ff2be6851b
commit 4fd3452f95
2 changed files with 2 additions and 2 deletions

View File

@ -57,7 +57,7 @@ def verbosity_option(function: F) -> F:
["PERF", "DEBUG", "INFO", "WARNING", "ERROR", "CRITICAL"],
case_sensitive=False,
),
help="Verbosity of CLI output",
help="Verbosity of CLI output. PERF will log performances (timing) information.",
default=None,
expose_value=False,
envvar="MANIM_SLIDES_VERBOSITY",

View File

@ -906,7 +906,7 @@ def start_at_callback(
"-s",
"--skip-all",
is_flag=True,
help="Skip all slides, useful the test if slides are working. Automatically sets `--skip-after-last-slide` to True.",
help="Skip all slides, useful the test if slides are working. Automatically sets `--exit-after-last-slide` to True.",
)
@click.option(
"-r",