diff --git a/etiquette/objects.py b/etiquette/objects.py index 0f9d127..03f0763 100644 --- a/etiquette/objects.py +++ b/etiquette/objects.py @@ -198,6 +198,9 @@ class GroupableMixin: if self == group: raise ValueError('Cant join self') + if self.get_parent() == group: + return + self.leave_group(commit=False) group.add_child(self, commit=commit)