basic documentation

This commit is contained in:
Mike Young
2019-12-15 12:59:53 -05:00
parent d82f247d83
commit 7aa1eb39be

View File

@@ -12,6 +12,9 @@ class Config:
_fp = "config.json"
def __init__(self, root):
"""
Initialize main configuration options
"""
_cp = pathlib.Path.joinpath(root, self._fp)
_data = self.open_file(_cp)
self.book_path = _data["BOOKPATH"]