diff --git a/config/config.py b/config/config.py index dbd0a88..6de2822 100644 --- a/config/config.py +++ b/config/config.py @@ -1,6 +1,8 @@ import json class Config(): + """Creates an object which takes a json file and returns a + dictionary when load_conf is called on the object""" def __init__(self, config_file): with open(config_file) as conf_file: self.conf= json.load(conf_file)