Commit 0cfebb87 by James Cammarata

Fixes a bug whereby tags are expected to be a set

Fixes #11424
Fixes #11429
parent f7da725d
......@@ -68,7 +68,7 @@ class Taggable:
else:
tags = set([tags])
else:
tags = [i for i,_ in itertools.groupby(tags)]
tags = set([i for i,_ in itertools.groupby(tags)])
else:
# this makes intersection work for untagged
tags = self.__class__.untagged
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment