Skip to content

Commit

Permalink
wrap reversed in list before passing to Click (#2363)
Browse files Browse the repository at this point in the history
  • Loading branch information
behackl authored Dec 4, 2021
1 parent 537ecc9 commit 7d9b626
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion manim/cli/render/render_options.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ def validate_resolution(ctx, param, value):
"--quality",
default=None,
type=click.Choice(
reversed([q["flag"] for q in QUALITIES.values() if q["flag"]]),
list(reversed([q["flag"] for q in QUALITIES.values() if q["flag"]])),
case_sensitive=False,
),
help="Render quality at the follow resolution framerates, respectively: "
Expand Down

0 comments on commit 7d9b626

Please sign in to comment.