Also, just a random thought, we could probably just define a class to hold all the contents of the yaml file? Then at initialization of the class, it gets all the contents of the config then we don't have to worry about writing multiple functions.get_from_yaml(...) statements at the top of each file. Instead its just replaced with a single config_data = functions.GetYaml (or whatever the syntax is) ?
Also, just a random thought, we could probably just define a class to hold all the contents of the yaml file? Then at initialization of the class, it gets all the contents of the config then we don't have to worry about writing multiple
functions.get_from_yaml(...)
statements at the top of each file. Instead its just replaced with a singleconfig_data = functions.GetYaml
(or whatever the syntax is) ?