mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-04 09:43:15 +00:00
Simplify code
This commit is contained in:
committed by
Matt Clay
parent
13deae9b8f
commit
6f40bab20f
@@ -637,9 +637,10 @@ class LxcContainerManagement(object):
|
||||
variables.pop(v, None)
|
||||
|
||||
return_dict = dict()
|
||||
false_values = [None, ''] + BOOLEANS_FALSE
|
||||
for k, v in variables.items():
|
||||
_var = self.module.params.get(k)
|
||||
if not [i for i in [None, ''] + BOOLEANS_FALSE if i == _var]:
|
||||
if _var not in false_values:
|
||||
return_dict[v] = _var
|
||||
else:
|
||||
return return_dict
|
||||
|
||||
Reference in New Issue
Block a user