Make default output directory "." instead of ""

To address https://github.com/3b1b/manim/issues/2261
This commit is contained in:
Grant Sanderson 2024-12-12 16:25:22 -06:00
parent 924e1a1a91
commit 859958794c

View file

@ -37,7 +37,7 @@ class SceneFileWriter(object):
# What python file is generating this scene
input_file_path: str = "",
# Where should this be written
output_directory: str = "",
output_directory: str = ".",
file_name: str | None = None,
open_file_upon_completion: bool = False,
show_file_location_upon_completion: bool = False,