Skip to content

Commit 4fd3452

Browse files
authored
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.
1 parent ff2be68 commit 4fd3452

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

manim_slides/commons.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ def callback(ctx: Context, param: Parameter, value: bool) -> None:
5757
["PERF", "DEBUG", "INFO", "WARNING", "ERROR", "CRITICAL"],
5858
case_sensitive=False,
5959
),
60-
help="Verbosity of CLI output",
60+
help="Verbosity of CLI output. PERF will log performances (timing) information.",
6161
default=None,
6262
expose_value=False,
6363
envvar="MANIM_SLIDES_VERBOSITY",

manim_slides/present.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -906,7 +906,7 @@ def str_to_int_or_none(value: str) -> Optional[int]:
906906
"-s",
907907
"--skip-all",
908908
is_flag=True,
909-
help="Skip all slides, useful the test if slides are working. Automatically sets `--skip-after-last-slide` to True.",
909+
help="Skip all slides, useful the test if slides are working. Automatically sets `--exit-after-last-slide` to True.",
910910
)
911911
@click.option(
912912
"-r",

0 commit comments

Comments
 (0)