Allow easy printing of loaded configuration

(beforechanging types and applying defaults)
This commit is contained in:
Matthias
2019-09-20 07:02:54 +02:00
parent e8657d2444
commit f0cf8d6a81
3 changed files with 25 additions and 1 deletions

View File

@@ -90,6 +90,9 @@ class Configuration:
# Load all configs
config: Dict[str, Any] = self.load_from_files(self.args["config"])
# Keep a copy of the original configuration file
config['original_config'] = deepcopy(config)
self._process_common_options(config)
self._process_optimize_options(config)