Skip to content

Commit 08982e9

Browse files
authored
Revert unnecessary changes
1 parent 8d2b682 commit 08982e9

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

lib/matplotlib/cbook.py

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -850,15 +850,11 @@ def join(self, a, *args):
850850
mapping[elem] = set_a
851851

852852
def joined(self, a, b):
853-
"""
854-
Return whether *a* and *b* are members of the same set.
855-
"""
853+
"""Return whether *a* and *b* are members of the same set."""
856854
return (self._mapping.get(a, object()) is self._mapping.get(b))
857855

858856
def remove(self, a):
859-
"""
860-
Remove *a* from the grouper, doing nothing if it is not there.
861-
"""
857+
"""Remove *a* from the grouper, doing nothing if it is not there."""
862858
self._mapping.pop(a, {a}).remove(a)
863859
self._ordering.pop(a, None)
864860

0 commit comments

Comments
 (0)