From 944128d9bfd85e1898fbe811455fc543f9154e85 Mon Sep 17 00:00:00 2001 From: Tony031218 <975062472@qq.com> Date: Mon, 8 Feb 2021 12:16:57 +0800 Subject: [PATCH] adjust the order of arguments in config --- manimlib/config.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/manimlib/config.py b/manimlib/config.py index 433ea74f..158661e7 100644 --- a/manimlib/config.py +++ b/manimlib/config.py @@ -95,15 +95,15 @@ def parse_cli(): action="store_true", help="Show the output file in finder", ) - parser.add_argument( - "--file_name", - help="Name for the movie or image file", - ) parser.add_argument( "--config", action="store_true", help="Guide for automatic configuration", ) + parser.add_argument( + "--file_name", + help="Name for the movie or image file", + ) parser.add_argument( "-n", "--start_at_animation_number", help="Start rendering not from the first animation, but"