Replace set([]) with {}.

This commit is contained in:
voussoir 2020-03-19 17:40:52 -07:00
parent a30649b0a8
commit 0a8a754cbc

View file

@ -48,7 +48,7 @@ def expand_mmf(tag_musts, tag_mays, tag_forbids):
for tag in tagset:
if tag in total:
continue
this_expanded = _expand_flat(set([tag]))
this_expanded = _expand_flat({tag})
total.update(this_expanded)
expanded.append(this_expanded)
return expanded