mirror of
https://github.com/famedly/ansible-collection-base
synced 2024-11-10 06:24:17 +00:00
fix(gpg_secretstore): merge dicts with | instead of +
This commit is contained in:
parent
c70755662b
commit
09f0027446
1 changed files with 2 additions and 3 deletions
|
@ -353,9 +353,8 @@ def main():
|
|||
|
||||
errors = []
|
||||
traceback = []
|
||||
for lib, exception in (
|
||||
check_secretstore_import_errors().items() + check_module_import_errors().items()
|
||||
):
|
||||
error_map = check_secretstore_import_errors() | check_module_import_errors()
|
||||
for lib, exception in error_map.items():
|
||||
errors.append(missing_required_lib(lib))
|
||||
traceback.append(exception)
|
||||
if errors:
|
||||
|
|
Loading…
Reference in a new issue