Reports calls to the set function that can be replaced with the set literal.
set
Example:
def do_mult(a, b): c = a * b return set([c, a, b])
When the quick-fix is applied, the code changes to:
def do_mult(a, b): c = a * b return {c, a, b}