From 2d7b9d579a72442ffdcf1afb93d3b489a9037111 Mon Sep 17 00:00:00 2001 From: Grant Sanderson Date: Tue, 10 Dec 2024 20:19:30 -0600 Subject: [PATCH] Move comment --- manimlib/config.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/manimlib/config.py b/manimlib/config.py index 7701d55f..274b772a 100644 --- a/manimlib/config.py +++ b/manimlib/config.py @@ -315,6 +315,9 @@ def update_run_config(config: dict, args: Namespace): ) +# Helpers for the functions above + + def load_yaml(file_path: str): try: with open(file_path, "r") as file: @@ -413,5 +416,3 @@ def get_scene_config() -> dict: def get_run_config(): return get_global_config()["run"] - -# Helpers for the functions above