mirror of https://github.com/python/cpython
Missing return
This commit is contained in:
parent
e67420d72e
commit
e973c61238
|
@ -293,6 +293,7 @@ class MutableSet(Set):
|
|||
self.discard(value)
|
||||
else:
|
||||
self.add(value)
|
||||
return self
|
||||
|
||||
def __isub__(self, it):
|
||||
for value in it:
|
||||
|
|
Loading…
Reference in New Issue