diff --git a/manimlib/utils/init_config.py b/manimlib/utils/init_config.py index d4e1ac5d..cb0a1787 100644 --- a/manimlib/utils/init_config.py +++ b/manimlib/utils/init_config.py @@ -17,7 +17,7 @@ def get_manim_dir() -> str: return os.path.abspath(os.path.join(manimlib_dir, "..")) -def remove_empty_value(dictionary: dict[str, Any]) -> dict[str, Any]: +def remove_empty_value(dictionary: dict[str, Any]) -> None: for key in list(dictionary.keys()): if dictionary[key] == "": dictionary.pop(key)