From f53fad1a9688a8a6dbd98a57517de77fd3d54ab4 Mon Sep 17 00:00:00 2001 From: Grant Sanderson Date: Sat, 17 Dec 2022 22:14:43 -0800 Subject: [PATCH] Avoid implicit string concatenation --- manimlib/utils/init_config.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/manimlib/utils/init_config.py b/manimlib/utils/init_config.py index d24711e2..3d42284d 100644 --- a/manimlib/utils/init_config.py +++ b/manimlib/utils/init_config.py @@ -80,25 +80,25 @@ def init_customization() -> None: show_default=False ) dir_config["raster_images"] = Prompt.ask( - " Which folder should manim find [bold]raster images[/bold] (.jpg .png .gif) in " + " Which folder should manim find [bold]raster images[/bold] (.jpg .png .gif) in " + \ "[prompt.default](optional, default is none)", default="", show_default=False ) dir_config["vector_images"] = Prompt.ask( - " Which folder should manim find [bold]vector images[/bold] (.svg .xdv) in " + " Which folder should manim find [bold]vector images[/bold] (.svg .xdv) in " + \ "[prompt.default](optional, default is none)", default="", show_default=False ) dir_config["sounds"] = Prompt.ask( - " Which folder should manim find [bold]sound files[/bold] (.mp3 .wav) in " + " Which folder should manim find [bold]sound files[/bold] (.mp3 .wav) in " + \ "[prompt.default](optional, default is none)", default="", show_default=False ) dir_config["temporary_storage"] = Prompt.ask( - " Which folder should manim storage [bold]temporary files[/bold] " + " Which folder should manim storage [bold]temporary files[/bold] " + \ "[prompt.default](recommended, use system temporary folder by default)", default="", show_default=False