Add simple function descriptions

This commit is contained in:
Grant Sanderson 2024-12-10 14:25:26 -06:00
parent cd744024ea
commit 07bb34793e

View file

@ -326,21 +326,22 @@ def update_run_config(config: dict, args: Namespace):
def get_window_config() -> dict: def get_window_config() -> dict:
""" Key word arguments for Window """
return get_global_config()["window"] return get_global_config()["window"]
def get_camera_config() -> dict: def get_camera_config() -> dict:
""" Key word arguments for Camera """
return get_global_config()["camera"] return get_global_config()["camera"]
def get_file_writer_config() -> dict: def get_file_writer_config() -> dict:
""" Key word arguments for SceneFileWriter """
return get_global_config()["file_writer"] return get_global_config()["file_writer"]
def get_scene_config() -> dict: def get_scene_config() -> dict:
""" """ Key word arguments for Scene """
Returns a dictionary to be used as key word arguments for Scene
"""
return get_global_config()["scene"] return get_global_config()["scene"]