aboutsummaryrefslogtreecommitdiff
path: root/resumejson_converter/utils/json.py
diff options
context:
space:
mode:
Diffstat (limited to 'resumejson_converter/utils/json.py')
-rw-r--r--resumejson_converter/utils/json.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/resumejson_converter/utils/json.py b/resumejson_converter/utils/json.py
index f3ce3d1..77e1312 100644
--- a/resumejson_converter/utils/json.py
+++ b/resumejson_converter/utils/json.py
@@ -8,6 +8,8 @@ from jsonresume.exceptions import InvalidResumeError
class JsonObject(object):
"""
+ Simple JSON object.
+
All work for this function go to
https://dev.to/mandrewcito/nested-json-to-python-object--5ajp
"""
@@ -27,6 +29,9 @@ class JsonObject(object):
def load(json_filepath):
+ """
+ Return a JsonObject from resumejson_converter.utils.json.
+ """
try:
logging.info("JSON parsing...")
with open(json_filepath, 'r') as f: