feat(config): clean up

This commit is contained in:
Haoyu Xu
2021-08-08 17:13:25 -04:00
parent fbc93738d4
commit 7211806be0
4 changed files with 138 additions and 130 deletions

View File

@@ -5,8 +5,8 @@ class ContentProcessor:
def __init__(self, config, operator_name):
self.config = config["operators"][operator_name]
self.file_to_process = [key for key, value in self.config["config"].items()]
self.settings = self.config["config"]
self.file_to_process = [key for key, value in self.config.items()]
self.settings = self.config
self.evalable = [
"__get_version"
]