Added basic documentation to all backend objects

This commit is contained in:
Mike Young
2019-12-01 12:35:40 -05:00
parent c5ad0a2bb7
commit 9dc1acf6b9
13 changed files with 159 additions and 33 deletions

View File

@@ -32,6 +32,9 @@ class Config:
self.auto_scan = True
def open_file(self, _cp):
"""
Opens config.json and reads in configuration options
"""
with open(str(_cp), "r") as read_file:
data = json.load(read_file)
return data