From 07bb34793eb04a94aae7f71a48e753d4eeaa2c7e Mon Sep 17 00:00:00 2001 From: Grant Sanderson Date: Tue, 10 Dec 2024 14:25:26 -0600 Subject: [PATCH] Add simple function descriptions --- manimlib/config.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/manimlib/config.py b/manimlib/config.py index 43ea57f3..5626015d 100644 --- a/manimlib/config.py +++ b/manimlib/config.py @@ -326,21 +326,22 @@ def update_run_config(config: dict, args: Namespace): def get_window_config() -> dict: + """ Key word arguments for Window """ return get_global_config()["window"] def get_camera_config() -> dict: + """ Key word arguments for Camera """ return get_global_config()["camera"] def get_file_writer_config() -> dict: + """ Key word arguments for SceneFileWriter """ return get_global_config()["file_writer"] def get_scene_config() -> dict: - """ - Returns a dictionary to be used as key word arguments for Scene - """ + """ Key word arguments for Scene """ return get_global_config()["scene"]