mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Fixes a bug whereby tags are expected to be a set
Fixes #11424 Fixes #11429
This commit is contained in:
parent
f7da725d53
commit
0cfebb8760
1 changed files with 1 additions and 1 deletions
|
@ -68,7 +68,7 @@ class Taggable:
|
||||||
else:
|
else:
|
||||||
tags = set([tags])
|
tags = set([tags])
|
||||||
else:
|
else:
|
||||||
tags = [i for i,_ in itertools.groupby(tags)]
|
tags = set([i for i,_ in itertools.groupby(tags)])
|
||||||
else:
|
else:
|
||||||
# this makes intersection work for untagged
|
# this makes intersection work for untagged
|
||||||
tags = self.__class__.untagged
|
tags = self.__class__.untagged
|
||||||
|
|
Loading…
Reference in a new issue