Commit e973c612 authored by Raymond Hettinger's avatar Raymond Hettinger

Missing return

parent e67420d7
......@@ -293,6 +293,7 @@ class MutableSet(Set):
self.discard(value)
else:
self.add(value)
return self
def __isub__(self, it):
for value in it:
......
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