Refactored to accounts

This commit is contained in:
2025-01-10 14:17:26 +01:00
parent a60b3893aa
commit ced25bdf3b
2 changed files with 78 additions and 76 deletions

View File

@@ -24,8 +24,7 @@ class ConfigurationResolver:
try:
target = self._find_entry(root_config, value.lower(), True)
if isinstance(target, list) and len(target) > 2:
target = self._find_entry(root_config, value.lower(), False)
target = self._find_entry(root_config, value.lower(), False)
current_config.clear()
current_config.update(target)
except Exception as e: