mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-10-09 09:54:02 -07:00
Ensure environment is inherited properly (task->block/include->play)
This commit is contained in:
parent
937584cd52
commit
76ae577519
3 changed files with 7 additions and 6 deletions
|
@ -442,7 +442,7 @@ class Base:
|
|||
new_value = [ new_value ]
|
||||
|
||||
#return list(set(value + new_value))
|
||||
return [i for i,_ in itertools.groupby(value + new_value)]
|
||||
return [i for i,_ in itertools.groupby(value + new_value) if i is not None]
|
||||
|
||||
def __getstate__(self):
|
||||
return self.serialize()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue