diff --git a/src/api/src/backend/views/Groups.py b/src/api/src/backend/views/Groups.py index bcd93996..9e541b09 100644 --- a/src/api/src/backend/views/Groups.py +++ b/src/api/src/backend/views/Groups.py @@ -84,7 +84,6 @@ def post(self, request, **_): # Check that id of the group is unique existing_group = Group.objects.filter(id=body.id, tenant_id=request.tenant_id).first() - print(model_to_dict(existing_group)) if existing_group != None: return Conflict(f"A Group already exists with the id '{body.id}'")