From 748d14febf45992decaf30438b07a0326f87c62a Mon Sep 17 00:00:00 2001 From: Madhav Khosla Date: Mon, 15 Jul 2019 14:11:33 +0530 Subject: [PATCH] comments --- config/config.py | 2 ++ 1 file changed, 2 insertions(+) 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)