Use better naming

This commit is contained in:
Matthias
2022-04-08 17:30:23 +02:00
parent 1435d26996
commit 238ff6c9fe
5 changed files with 6 additions and 6 deletions

View File

@@ -99,8 +99,8 @@ def load_from_files(files: List[str], base_path: Path = None, level: int = 0) ->
file = base_path / file
config_tmp = load_config_file(str(file))
if 'files' in config_tmp:
config_sub = load_from_files(config_tmp['files'], file.resolve().parent, level + 1)
if 'add_config_files' in config_tmp:
config_sub = load_from_files(config_tmp['add_config_files'], file.resolve().parent, level + 1)
files_loaded.extend(config_sub.get('config_files', []))
deep_merge_dicts(config_sub, config_tmp)