remove parens
diff --git a/Lib/functools.py b/Lib/functools.py
index 7ce6bc2..1bbc520 100644
--- a/Lib/functools.py
+++ b/Lib/functools.py
@@ -82,7 +82,7 @@
                    ('__gt__', lambda self, other: not other >= self),
                    ('__lt__', lambda self, other: not self >= other)]
     }
-    roots = (set(dir(cls)) & set(convert))
+    roots = set(dir(cls)) & set(convert)
     # Remove default comparison operations defined on object.
     roots -= {meth for meth in roots if getattr(cls, meth) in _object_defaults}
     if not roots: