Skip to content

Commit

Permalink
Remove breakpoint() comment
Browse files Browse the repository at this point in the history
  • Loading branch information
jdavcs committed Oct 30, 2024
1 parent 71e0943 commit d06cf20
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion lib/galaxy/model/security.py
Original file line number Diff line number Diff line change
Expand Up @@ -1533,7 +1533,6 @@ def _set_user_roles(self, user, role_ids):
else:
delete_stmt = delete_stmt.where(UserRoleAssociation.role_id != private_role.id)
role_ids = self._filter_private_roles(role_ids)
# breakpoint()

insert_values = [{"user_id": user.id, "role_id": role_id} for role_id in role_ids]
self._set_associations(user, UserRoleAssociation, delete_stmt, insert_values)
Expand Down

0 comments on commit d06cf20

Please sign in to comment.