chore(cli): remove unused PERF verbosity level (#245)

* chore(cli): remove unused PERF verbosity level

As titled.

* fix(tests): remove perf in tests
This commit is contained in:
Jérome Eertmans
2023-08-21 18:00:56 +02:00
committed by GitHub
parent 4d76f2ccc1
commit bd9bf06876
5 changed files with 7 additions and 7 deletions

View File

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