Skip to content
Snippets Groups Projects
Commit 1ffe9749 authored by Simon Künzel's avatar Simon Künzel
Browse files

Update config loading

parent c29a147a
No related branches found
No related tags found
No related merge requests found
......@@ -115,7 +115,7 @@ def load_config_file(path: Path):
def merge_config_with(config: dict, to_merge: dict, overwrite_non_mergeable: bool = False):
for key, item in to_merge:
for key, item in to_merge.items():
if key not in config:
config[key] = item
elif isinstance(item, dict) and isinstance(config[key], dict):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment